TeamMentor.CoreLib.TokenAuthentication_ExtensionMethods.token C# (CSharp) Method

token() public static method

public static token ( this authToken ) : System.Guid
authToken this
return System.Guid
        public static Guid token(this AuthToken authToken)
        {
            if(authToken.notNull())
                return authToken.Token;
            return Guid.Empty;
        }