System.Xml.Xsl.XmlQueryTypeFactory.ItemType.this C# (CSharp) Method

this() public method

AtomicValueType is only a composition of itself, rather than other smaller types.
public this ( int index ) : XmlQueryType
index int
return XmlQueryType
            public override XmlQueryType this[int index] {
                get {
                    if (index != 0)
                        throw new IndexOutOfRangeException();

                    return this;
                }
                set { throw new NotSupportedException(); }
            }
        }
XmlQueryTypeFactory.ItemType