Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the specified partition number is present in the collection.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function Contains ( _
number As Integer _
) As Boolean
'Usage
Dim instance As PartitionNumberedObjectCollectionBase
Dim number As Integer
Dim returnValue As Boolean
returnValue = instance.Contains(number)
public bool Contains(
int number
)
public:
bool Contains(
int number
)
member Contains :
number:int -> bool
public function Contains(
number : int
) : boolean
Parameters
- number
Type: System.Int32
An Int32 value that specifies the partition number.
Return Value
Type: System.Boolean
A Boolean value that specifies whether the specified partition number is present in the collection of physical partitions.If True, the collection contains the partition with the specified number. Otherwise, False.