CSharpRTMP.Core.Protocols.BaseProtocol.AllowNearProtocol C# (CSharp) Метод

AllowNearProtocol() публичный Метод

public AllowNearProtocol ( ulong type ) : bool
type ulong
Результат bool
        public virtual bool AllowNearProtocol(ulong type)
        {
            var attr = GetType().GetCustomAttribute<AllowNearTypesAttribute>();
            return attr!=null && (attr.Types.Length == 0 || attr.Types.Contains(type));
        }