CimSession.EnumerateClassesAsync Method (String)
Asynchronous method that enumerates the classes of a specified session.
Namespace: Microsoft.Management.Infrastructure
Assembly: Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)
Syntax
public CimAsyncMultipleResults<CimClass> EnumerateClassesAsync(
string namespaceName
)
public:
CimAsyncMultipleResults<CimClass^>^ EnumerateClassesAsync(
String^ namespaceName
)
member EnumerateClassesAsync :
namespaceName:string -> CimAsyncMultipleResults<CimClass>
Public Function EnumerateClassesAsync (
namespaceName As String
) As CimAsyncMultipleResults(Of CimClass)
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.
Return Value
Type: Microsoft.Management.Infrastructure.Generic.CimAsyncMultipleResults<CimClass>
A CimAsyncMultipleResults<T> object that represents an asynchronous operation that returns multiple results.
See Also
EnumerateClassesAsync Overload
CimSession Class
Microsoft.Management.Infrastructure Namespace
Return to top