Share via


Synchronous Property

For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.

Gets or sets a value that specifies whether the export operation is performed synchronously.

Namespace:  Microsoft.CommerceServer.Catalog
Assembly:  Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)

Syntax

'Declaration
Public Property Synchronous As Boolean
'Usage
Dim instance As ExportOptions
Dim value As Boolean

value = instance.Synchronous

instance.Synchronous = value
public bool Synchronous { get; set; }
public:
property bool Synchronous {
    bool get ();
    void set (bool value);
}
public function get Synchronous () : boolean
public function set Synchronous (value : boolean)

Property Value

Type: System..::.Boolean
true if the export operation is performed synchronously; otherwise, false

Remarks

Stores a value that specifies whether the export operation is performed synchronously. This property allows synchronous export of the inventory catalog.

  • synchronous export - The calling agent does not hand-off the process completely to the sub-system. It waits for completion to see the results and exceptions. It is not free to do any other activity.

  • Asynchronous export - The calling agent hands-off the process to the sub-system and is free to do any other activity. The results of the process and the exceptions need to be fetched (either on a polling basis or on an event-model.

Permissions

See Also

Reference

ExportOptions Class

ExportOptions Members

Microsoft.CommerceServer.Catalog Namespace

Other Resources

Importing Catalog Data by Using the Catalog API

Import Options

How to Import From an XML File

How to Import Selected Fields

Exporting Catalog Data by Using the Catalog API

Export Options

How to Export to an XML File

How to Export Selected Fields