CSharpRTMP.Core.Streaming.StreamsManager.StreamNameAvailable C# (CSharp) Method

StreamNameAvailable() public method

public StreamNameAvailable ( string streamName ) : bool
streamName string
return bool
        public bool StreamNameAvailable(string streamName)
        {
            return Application.AllowDuplicateInboundNetworkStreams ||
                   FindByTypeByName(StreamTypes.ST_IN_NET, streamName, true, false).Count == 0;
        }