CSharpRTMP.Core.Protocols.Cluster.BaseClusterProtocol.PlayStream C# (CSharp) Method

PlayStream() public method

public PlayStream ( uint appId, string streamName ) : void
appId uint
streamName string
return void
        public void PlayStream(uint appId, string streamName)
        {
            Send(ClusterMessageType.Play, output =>
            {
                output.Write7BitValue(appId);
                output.Write(streamName);
            });
        }