SyncObject Interface

Represents a Send\Receive group for a user.

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
<GuidAttribute("00063083-0000-0000-C000-000000000046")> _
Public Interface SyncObject _
    Inherits _SyncObject, SyncObjectEvents_Event
'Usage
Dim instance As SyncObject
[GuidAttribute("00063083-0000-0000-C000-000000000046")]
public interface SyncObject : _SyncObject, 
    SyncObjectEvents_Event

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _SyncObject. For information about the event members of the COM object, see SyncObjectEvents_Event.

A Send\Receive group lets users configure different synchronization scenarios, selecting which folders and which filters apply.

Use the Item property (this in C#) to retrieve the SyncObject object from a SyncObjects object. Because the Name property is the default property of the SyncObject object, you can identify the group by name.

The SyncObject object is read-only; you cannot change its properties or create new ones. However, note that you can add one Send/Receive group using the SyncObjects.AppFolders property which will create a Send/Receive group called Application Folders.

See Also

Reference

SyncObject Members

Microsoft.Office.Interop.Outlook Namespace