System.Net.SpnDictionary.this C# (CSharp) Method

this() public method

public this ( string key ) : string
key string
return string
        public override string this[string key] {
            get {
                key = GetCanonicalKey(key);
                return InternalGet(key);
            }
            set {
                key = GetCanonicalKey(key);
                InternalSet(key, value);
            }
        }
        //