System.Data.DataRelationCollection.DataSetRelationCollection.this C# (CSharp) Method

this() public method

public this ( string name ) : DataRelation
name string
return DataRelation
            public override DataRelation this[string name]
            {
                get
                {
                    int index = InternalIndexOf(name);
                    if (index == -2)
                    {
                        throw ExceptionBuilder.CaseInsensitiveNameConflict(name);
                    }
                    return (index < 0) ? null : (DataRelation)List[index];
                }
            }

Same methods

DataRelationCollection.DataSetRelationCollection::this ( int index ) : DataRelation