System.Xml.Xsl.Qil.QilParameter.this C# (CSharp) Method

this() public method

public this ( int index ) : QilNode
index int
return QilNode
        public override QilNode this[int index] {
            get {
                switch (index) {
                    case 0: return Binding;
                    case 1: return this.name;
                    default: throw new IndexOutOfRangeException();
                }
            }
            set {
                switch (index) {
                    case 0: Binding = value; break;
                    case 1: this.name = value; break;
                    default: throw new IndexOutOfRangeException();
                }
            }
        }