Share via


SqlSyncTableProvisioningCollection.Item Property (String)

An indexer property that gets a SqlSyncTableProvisioning object with the specified table name from the collection.

Namespace:  Microsoft.Synchronization.Data.SqlServer
Assembly:  Microsoft.Synchronization.Data.SqlServer (in Microsoft.Synchronization.Data.SqlServer.dll)

Syntax

'Declaration
Public ReadOnly Default Property Item ( _
    globalTableName As String _
) As SqlSyncTableProvisioning
    Get
'Usage
Dim instance As SqlSyncTableProvisioningCollection
Dim globalTableName As String
Dim value As SqlSyncTableProvisioning

value = instance(globalTableName)
public SqlSyncTableProvisioning this[
    string globalTableName
] { get; }
public:
property SqlSyncTableProvisioning^ default[String^ globalTableName] {
    SqlSyncTableProvisioning^ get (String^ globalTableName);
}
member Item : SqlSyncTableProvisioning
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

  • globalTableName
    Type: System.String
    The name of the table to look up.

Property Value

Type: Microsoft.Synchronization.Data.SqlServer.SqlSyncTableProvisioning
The SqlSyncTableProvisioning object associated with globalTableName. Returns null reference (Nothing in Visual Basic) if the specified table name is not found.

Exceptions

Exception Condition
ArgumentException

globalTableName is null reference (Nothing in Visual Basic) or empty.

See Also

Reference

SqlSyncTableProvisioningCollection Class

Item Overload

Microsoft.Synchronization.Data.SqlServer Namespace