CSharpRTMP.Core.Protocols.Rtmfp.BaseRtmfpProtocol.OnHandshake C# (CSharp) Method

OnHandshake() public method

public OnHandshake ( IPEndPoint address, string path, NameValueCollection properties, uint attempts, List addresses ) : void
address System.Net.IPEndPoint
path string
properties System.Collections.Specialized.NameValueCollection
attempts uint
addresses List
return void
        public virtual void OnHandshake(IPEndPoint address, string path, NameValueCollection properties, uint attempts, List<string> addresses)
        {
            //throw new NotImplementedException();
        }

Usage Example

Ejemplo n.º 1
0
 public void OnHandshake(uint attempts, List <string> addresses)
 {
     Handler.OnHandshake(Address, Path, Properties, attempts, addresses);
 }