CimSession.GetInstanceAsync Method (String, CimInstance)
Asynchronous method that gets the specified instance from the server represented by the session.
Namespace: Microsoft.Management.Infrastructure
Assembly: Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)
Syntax
public CimAsyncResult<CimInstance> GetInstanceAsync(
string namespaceName,
CimInstance instanceId
)
public:
CimAsyncResult<CimInstance^>^ GetInstanceAsync(
String^ namespaceName,
CimInstance^ instanceId
)
member GetInstanceAsync :
namespaceName:string *
instanceId:CimInstance -> CimAsyncResult<CimInstance>
Public Function GetInstanceAsync (
namespaceName As String,
instanceId As CimInstance
) As CimAsyncResult(Of CimInstance)
Parameters
namespaceName
Type: System.StringA null-terminated string that contains the optional namespace name to carry out the operation. If none is specified, the server will pick a default. The namespace cannot include a computer name. It can only be in the form of a namespace name separated by a slash mark character (/). For example, the following would be a valid namespaceName value: root/cimv2.
instanceId
Type: Microsoft.Management.Infrastructure.CimInstanceA CimInstance object that represents the class name and keys of the instance to be retrieved from the server.
Return Value
Type: Microsoft.Management.Infrastructure.Generic.CimAsyncResult<CimInstance>
A CimAsyncResult<T> object that represents an asynchronous operation that returns a single result.
See Also
GetInstanceAsync Overload
CimSession Class
Microsoft.Management.Infrastructure Namespace
Return to top