संपादित करें

इसके माध्यम से साझा किया गया


CimType Enum

Definition

Describes the possible CIM types for properties, qualifiers, or method parameters.

public enum class CimType
public enum CimType
type CimType = 
Public Enum CimType
Inheritance

Fields

Boolean 11

A Boolean. This value maps to the Boolean type.

Char16 103

A 16-bit character. This value maps to the Char type.

DateTime 101

A date or time value, represented in a string in DMTF date/time format: yyyymmddHHMMSS.mmmmmmsUUU, where yyyymmdd is the date in year/month/day; HHMMSS is the time in hours/minutes/seconds; mmmmmm is the number of microseconds in 6 digits; and sUUU is a sign (+ or -) and a 3-digit UTC offset. This value maps to the DateTime type.

None 0

A null value.

Object 13

An embedded object. Note that embedded objects differ from references in that the embedded object does not have a path and its lifetime is identical to the lifetime of the containing object. This value maps to the Object type.

Real32 4

A floating-point 32-bit number. This value maps to the Single type.

Real64 5

A floating point 64-bit number. This value maps to the Double type.

Reference 102

A reference to another object. This is represented by a string containing the path to the referenced object. This value maps to the Int16 type.

SInt16 2

A signed 16-bit integer. This value maps to the Int16 type.

SInt32 3

A signed 32-bit integer. This value maps to the Int32 type.

SInt64 20

A signed 64-bit integer. This value maps to the Int64 type.

SInt8 16

A signed 8-bit integer. This value maps to the SByte type.

String 8

A string. This value maps to the String type.

UInt16 18

An unsigned 16-bit integer. This value maps to the UInt16 type.

UInt32 19

An unsigned 32-bit integer. This value maps to the UInt32 type.

UInt64 21

An unsigned 64-bit integer. This value maps to the UInt64 type.

UInt8 17

An unsigned 8-bit integer. This value maps to the Byte type.

Applies to