GreaterThan opérateur
Determines whether one object is greater than another by performing an operation on two BackupDeviceItem objects.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.SmoExtended (dans Microsoft.SqlServer.SmoExtended.dll)
Syntaxe
'Déclaration
Public Shared Operator > ( _
r1 As BackupDeviceItem, _
r2 As BackupDeviceItem _
) As Boolean
'Utilisation
Dim r1 As BackupDeviceItem
Dim r2 As BackupDeviceItem
Dim returnValue As Boolean
returnValue = (r1 > r2)
public static bool operator >(
BackupDeviceItem r1,
BackupDeviceItem r2
)
public:
static bool operator >(
BackupDeviceItem^ r1,
BackupDeviceItem^ r2
)
static let inline (>)
r1:BackupDeviceItem *
r2:BackupDeviceItem : bool
JScript prend en charge l'utilisation d'opérateurs surchargés, mais pas la déclaration de nouveaux opérateurs.
Paramètres
- r1
Type : Microsoft.SqlServer.Management.Smo. . :: . .BackupDeviceItem
The first BackupDeviceItem object that is used in the operation.
- r2
Type : Microsoft.SqlServer.Management.Smo. . :: . .BackupDeviceItem
The second BackupDeviceItem object that is used in the greater than operation.
Valeur de retour
Type : System. . :: . .Boolean
A Boolean value that specifies the outcome of the operation to determine whether one object is greater than the other.
If True, the first object is greater than the second. Otherwise, False.
Voir aussi