CimSerializer.Create Method (String, UInt32)

 

Creates and initializes a custom serializer.

Namespace:   Microsoft.Management.Infrastructure.Serialization
Assembly:  Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)

Syntax

public static CimSerializer Create(
    string format,
    uint flags
)
public:
static CimSerializer^ Create(
    String^ format,
    unsigned int flags
)
static member Create : 
        format:string *
        flags:uint32 -> CimSerializer
Public Shared Function Create (
    format As String,
    flags As UInteger
) As CimSerializer

Parameters

  • format
    Type: System.String

    The serialization format. Currently, only "MI_XML" is supported.

  • flags
    Type: System.UInt32

    Serialization flags. This parameter must be 0.

Return Value

Type: Microsoft.Management.Infrastructure.Serialization.CimSerializer

The CIM serializer.

See Also

Create Overload
CimSerializer Class
Microsoft.Management.Infrastructure.Serialization Namespace

Return to top