System.Net.FtpMethodInfo.HasFlag C# (CSharp) Method

HasFlag() private method

private HasFlag ( FtpMethodFlags flags ) : bool
flags FtpMethodFlags
return bool
        internal bool HasFlag(FtpMethodFlags flags)
        {
            return (Flags & flags) != 0;
        }