System.Security.Permissions.PrincipalPermission.VerifyType C# (CSharp) 메소드

VerifyType() 개인적인 메소드

private VerifyType ( IPermission perm ) : bool
perm IPermission
리턴 bool
        private bool VerifyType(IPermission perm)
        {
            // if perm is null, then obviously not of the same type
            return (perm != null) && (perm.GetType() == GetType());
        }