Applies To: Operations Manager for System Center 2012
Starts an asynchronous operation to discover Windows-based computers.
Namespace:   Microsoft.EnterpriseManagement.Administration
Assembly:  Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
public IAsyncResult BeginExecuteWindowsDiscovery(
    IList<WindowsDiscoveryConfiguration> discoveryConfigurations,
    AsyncCallback callback,
    object state
)
public:
IAsyncResult^ BeginExecuteWindowsDiscovery(
    IList<WindowsDiscoveryConfiguration^>^ discoveryConfigurations,
    AsyncCallback^ callback,
    Object^ state
)
member BeginExecuteWindowsDiscovery : 
        discoveryConfigurations:IList<WindowsDiscoveryConfiguration> *
        callback:AsyncCallback *
        state:Object -> IAsyncResult
Public Function BeginExecuteWindowsDiscovery (
    discoveryConfigurations As IList(Of WindowsDiscoveryConfiguration),
    callback As AsyncCallback,
    state As Object
) As IAsyncResult
Parameters
- discoveryConfigurations 
 Type: System.Collections.Generic.IList<WindowsDiscoveryConfiguration>- Information used to configure the discovery. 
- callback 
 Type: System.AsyncCallback- An AsyncCallback delegate that references a user-defined method to call when the discovery is complete. 
- state 
 Type: System.Object- A user-defined object that you can use to pass information about the state of the asynchronous operation to the method specified in the callback parameter. 
Return Value
Type: System.IAsyncResult
Returns an IAsyncResult instance that you can use to check the status of the asynchronous operation.
See Also
ManagementServer Class
Microsoft.EnterpriseManagement.Administration Namespace
Return to top