CSharpRTMP.Core.Protocols.BaseProtocol.AllowNearProtocol C# (CSharp) Method

AllowNearProtocol() public method

public AllowNearProtocol ( ulong type ) : bool
type ulong
return bool
        public virtual bool AllowNearProtocol(ulong type)
        {
            var attr = GetType().GetCustomAttribute<AllowNearTypesAttribute>();
            return attr!=null && (attr.Types.Length == 0 || attr.Types.Contains(type));
        }