CSharpRTMP.Core.Protocols.Rtmp.SO.this C# (CSharp) Method

this() public method

public this ( string key ) : Variant
key string
return Variant
        public Variant this[string key]
        {
            get { return Payload[key]; }
            set
            {
                if (value == null) UnSet(key);
                else Set(key, value);
            }
        }