cim_cimxmlcommunicationmechanism.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 42 行

MOF
42
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_CIMXMLCommunicationMechanism// ==================================================================   [UMLPackagePath ( "CIM::Interop" ), Version ( "2.8.0" ),     Description (       "This class specializes ObjectManagerCommunicationMechanism, "       "adding properties specific to the CIM-XML protocol (XML "       "encoding and CIM Operations).")]class CIM_CIMXMLCommunicationMechanism : CIM_ObjectManagerCommunicationMechanism {      [Required, Override ( "CommunicationMechanism" ), Description (          "The only valid CommunicationMechanism for this subclass is "          "CIM-XML."),        ValueMap { "2" },        Values { "CIM-XML" }]   uint16 CommunicationMechanism = 2;      [Required, Override ( "Version" ), Description (          "Enumeration describing the CIM-XML protocol version "          "supported by the ObjectManager."),        ValueMap { "1.0", "1.1", "1.2" }]   string Version;      [Deprecated { "CIM_CIMXMLCommunicationMechanism.Version" },       Required, Description (          "Enumeration describing the CIM-XML protocol version "          "supported by the ObjectManager. It is deprecated in lieu of "          "a more general, inherited property (Version)."),        ValueMap { "0", "1" },        Values { "Unknown", "1.0" }]   uint16 CIMXMLProtocolVersion;      [Required, Description (          "Describes whether the CIM Server is strictly validating "          "(validates the XML document against the DTD) or not "          "(loosely validating).")]   boolean CIMValidated;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?