CSharpRTMP.Core.Protocols.Rtmfp.Cookie.Cookie C# (CSharp) Method

Cookie() public method

public Cookie ( HandShake handshake, byte tag, string queryUrl ) : System
handshake HandShake
tag byte
queryUrl string
return System
        public Cookie(HandShake handshake, byte[] tag, string queryUrl)
        {
            CookieComputing = new CookieComputing(handshake);
            QueryUrl = queryUrl;
            Tag = tag.BytesToString();
            ComputeKeys();
        }
        public Cookie(OutboundHandshake handshake, byte[] tag, Target target)

Same methods

Cookie::Cookie ( OutboundHandshake handshake, byte tag, Target target ) : System