CimType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
None | 0 | A null value. |
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. |
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. |
String | 8 | A string. This value maps to the String type. |
Boolean | 11 | A Boolean. This value maps to the Boolean type. |
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. |
SInt8 | 16 | A signed 8-bit integer. This value maps to the SByte type. |
UInt8 | 17 | An unsigned 8-bit integer. This value maps to the Byte 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. |
SInt64 | 20 | A signed 64-bit integer. This value maps to the Int64 type. |
UInt64 | 21 | An unsigned 64-bit integer. This value maps to the UInt64 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. |
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. |
Char16 | 103 | A 16-bit character. This value maps to the Char type. |