Partager via


ConnectorFrameworkProxy.InitializeWithBookmark Method (Guid, DateTime)

 

Applies To: Operations Manager for System Center 2012

Initializes the monitoring connector that is required to get alerts by calling GetMonitoringAlertsWithBookmark and sets the BookMark time to a specified date and time.

Namespace:   Microsoft.EnterpriseManagement.ConnectorFramework
Assembly:  Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)

Syntax

public void InitializeWithBookmark(
    Guid connectorId,
    DateTime utcBookmarkTime
)
public:
void InitializeWithBookmark(
    Guid connectorId,
    DateTime utcBookmarkTime
)
member InitializeWithBookmark : 
        connectorId:Guid *
        utcBookmarkTime:DateTime -> unit
Public Sub InitializeWithBookmark (
    connectorId As Guid,
    utcBookmarkTime As Date
)

Parameters

  • connectorId
    Type: System.Guid

    The globally unique identifier (GUID) for the monitoring connector to initialize.

  • utcBookmarkTime
    Type: System.DateTime

    A timestamp bookmark. The monitoring connector's bookmark will be set to this bookmark time.

Remarks

The MonitoringConnector must be set up and initialized before any alerts can be retrieved. This method initializes the monitoring connector for subsequent calls with the specified bookmark.

All alerts with a timestamp earlier than the utcBookmarkTime will be ignored.

Attempting to initialize a monitoring connector that is already initialized results in an exception with the "The connector is already in the given state." warning. It is advisable to perform a check of the P:Microsoft.EnterpriseManagement.ConnectorFramework.MonitoringConnector.Initialized property to determine if the monitoring connector is already initialized before attempting to initialize the monitoring connector.

See Also

ConnectorFrameworkProxy Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace

Return to top