PeerCastStation.FLV.RTMP.RTMPOutputStreamFactory.ParseChannelID C# (CSharp) Method

ParseChannelID() public method

public ParseChannelID ( byte header ) : Guid?
header byte
return Guid?
		public override Guid? ParseChannelID(byte[] header)
		{
			if (header.Length>0 && header[0]==0x03) {
				return Guid.Empty;
			}
			else {
				return null;
			}
		}
	}