ConnectorFrameworkProxy.InitializeWithBookmarkForTiers Method (Guid, DateTime, ConnectorTieredOperationFailure[])
Applies To: Operations Manager for System Center 2012
Initializes the monitoring connector that is required to get alerts by calling GetMonitoringAlertsForTiers and sets the BookMark time to a specified date and time, for all tiered Management Groups. The failures that occurred for the configured tiers are returned.
Namespace: Microsoft.EnterpriseManagement.ConnectorFramework
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
public void InitializeWithBookmarkForTiers(
Guid connectorId,
DateTime utcBookmarkTime,
out ConnectorTieredOperationFailure[] failures
)
public:
void InitializeWithBookmarkForTiers(
Guid connectorId,
DateTime utcBookmarkTime,
[OutAttribute] array<ConnectorTieredOperationFailure^>^% failures
)
member InitializeWithBookmarkForTiers :
connectorId:Guid *
utcBookmarkTime:DateTime *
failures:ConnectorTieredOperationFailure[] byref -> unit
Public Sub InitializeWithBookmarkForTiers (
connectorId As Guid,
utcBookmarkTime As Date,
<OutAttribute> ByRef failures As ConnectorTieredOperationFailure()
)
Parameters
connectorId
Type: System.GuidThe globally unique identifier (GUID) for the monitoring connector to initialize.
utcBookmarkTime
Type: System.DateTimeA timestamp bookmark. The monitoring connector's bookmark will be set to this bookmark time.
failures
Type: Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure[]The array of failures that may have occurred for various tiers.
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 stored bookmark.
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