IConnectorFramework.InitializeWithBookmarkForTiers(Guid, DateTime, ConnectorTieredOperationFailure[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes the connector for subsequent calls and sets the connectors bookmark to the provided bookmark time.
public:
void InitializeWithBookmarkForTiers(Guid connectorId, DateTime utcBookmarkTime, [Runtime::InteropServices::Out] cli::array <Microsoft::EnterpriseManagement::ConnectorFramework::ConnectorTieredOperationFailure ^> ^ % failures);
[System.ServiceModel.FaultContract(typeof(System.TimeoutException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.ServerDisconnectedException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.UnknownServiceException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.UnknownChannelException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.UnauthorizedAccessEnterpriseManagementException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.UnknownAuthorizationStoreException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.UnknownDatabaseException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.InvalidDatabaseDataException))]
[System.ServiceModel.FaultContract(typeof(Microsoft.EnterpriseManagement.Common.ServiceNotRunningException))]
[System.ServiceModel.OperationContract]
public void InitializeWithBookmarkForTiers (Guid connectorId, DateTime utcBookmarkTime, out Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure[] failures);
abstract member InitializeWithBookmarkForTiers : Guid * DateTime * ConnectorTieredOperationFailure[] -> unit
Public Sub InitializeWithBookmarkForTiers (connectorId As Guid, utcBookmarkTime As DateTime, ByRef failures As ConnectorTieredOperationFailure())
Parameters
- connectorId
- Guid
The connector id.
- utcBookmarkTime
- DateTime
The new bookmark.
- failures
- ConnectorTieredOperationFailure[]
Any failures that occurred for various tiers.
- Attributes
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 <xref:Microsoft.EnterpriseManagement.ConnectorFramework.MonitoringConnector.Initialized%2A> property to determine if the monitoring connector is already initialized before attempting to Initialize the monitoring connector.