Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
「名前=値」のペアをセミコロンで区切ったリストで、追加の同期パラメーターを指定します。
Public Property AdditionalParms As String
public string AdditionalParms {get;set;}
「名前=値」のペアをセミコロンで区切ったリスト形式の文字列。
このプロパティを使用すると、他の定義済みパラメーターでは簡単に指定できないいくつかの追加の同期パラメーターを指定できます。
次の例は、ULSyncParms オブジェクトに AllowDownloadDupRows、CheckpointStore、DisableConcurrency、TableOrder パラメーターを設定する方法を示します。
private ULSyncParms info; // ... info.AdditionalParms = "AllowDownloadDupRows=1; CheckpointStore=1; DisableConcurrency=1; TableOrder=Customer,Sales"