Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Adds a SyncColumnMapping object to the end of the collection when given a server column name and a client column name.
Namespace: Microsoft.Synchronization.Data.Server
Assembly: Microsoft.Synchronization.Data.Server (in Microsoft.Synchronization.Data.Server.dll)
Syntax
'Declaration
Public Function Add ( _
serverColumn As String, _
clientColumn As String _
) As SyncColumnMapping
'Usage
Dim instance As SyncColumnMappingCollection
Dim serverColumn As String
Dim clientColumn As String
Dim returnValue As SyncColumnMapping
returnValue = instance.Add(serverColumn, _
clientColumn)
public SyncColumnMapping Add(
string serverColumn,
string clientColumn
)
public:
SyncColumnMapping^ Add(
String^ serverColumn,
String^ clientColumn
)
member Add :
serverColumn:string *
clientColumn:string -> SyncColumnMapping
public function Add(
serverColumn : String,
clientColumn : String
) : SyncColumnMapping
Parameters
- serverColumn
Type: System.String
The name of the column at the server to add to the SyncColumnMappingCollection.
- clientColumn
Type: System.String
The name of the column at the client to add to the SyncColumnMappingCollection.
Return Value
Type: Microsoft.Synchronization.Data.Server.SyncColumnMapping
A SyncColumnMapping object that represents the mapping between the columns specified in serverColumn and clientColumn.