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

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

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