Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Determines whether two objects are unequal by performing an inequality operation on two ServerPermissionSet objects.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
p1 As ServerPermissionSet, _
p2 As ServerPermissionSet _
) As Boolean
'Usage
Dim p1 As ServerPermissionSet
Dim p2 As ServerPermissionSet
Dim returnValue As Boolean
returnValue = (p1 <> p2)
public static bool operator !=(
ServerPermissionSet p1,
ServerPermissionSet p2
)
public:
static bool operator !=(
ServerPermissionSet^ p1,
ServerPermissionSet^ p2
)
static let inline(<>)
p1:ServerPermissionSet *
p2:ServerPermissionSet : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- p1
Type: Microsoft.SqlServer.Management.Smo.ServerPermissionSet
A ServerPermissionSet object that specifies the server permission.
- p2
Type: Microsoft.SqlServer.Management.Smo.ServerPermissionSet
A ServerPermissionSet object that specifies the server permission.
Return Value
Type: System.Boolean
A Boolean object that specifies whether the two specified objects are unequal.If True, the two specified objects are unequal.If False (default), the two specified objects are equal.
Examples
Granting, Revoking, and Denying Permissions