Here are the examples of the csharp api class System.Data.Common.DataTableMappingCollection.IndexOf(object) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
3 Examples
0
0
2. Example
View licensepublic void Remove (DataTableMapping value) { if (null == value) { throw ADP.TablesAddNullAttempt ("value"); } int index = IndexOf (value); if (-1 != index) { RemoveIndex (index); } else { throw ADP.CollectionRemoveInvalidObject (ItemType, this); } }
0
3. Example
View licenseprivate void Validate(int index, DataTableMapping value) { if (null == value) { throw ADP.TablesAddNullAttempt("value"); } if (null != value.Parent) { if (this != value.Parent) { throw ADP.TablesIsNotParent(this); } else if (index != IndexOf(value)) { throw ADP.TablesIsParent(this); } } String name = value.SourceTable; if (ADP.IsEmpty(name)) { index = 1; do { name = ADP.SourceTable + index.ToString(System.Globalization.CultureInfo.InvariantCulture); index++; } while (-1 != IndexOf(name)); value.SourceTable = name; } else { ValidateSourceTable(index, name); } }