2.2.5.14 ResponseType

The ResponseType is an enumeration of the possible responses that the client can send to an Error or a Confirm message. This type MUST adhere to the namespace "http://schemas.microsoft.com/wbem/wsman/1/cim/interactive.xsd". The schema MUST be as follows.

 <xs:simpleType name="ResponseType">
     <xs:restriction base="xs:string">
     <xs:enumeration value="yes" />
     <xs:enumeration value="no" />
     <xs:enumeration value="yesToAll" />
     <xs:enumeration value="noToAll" />
     </xs:restriction>
  </xs:simpleType>

Enumeration

The following values are defined by the ResponseType simple type.

Value

Description

yes

The user answered "yes" to the prompt. The server MUST submit any further prompts to the user for confirmation.

no

The user answered "no" to the prompt. The server MUST submit any further prompts to the user for confirmation.

yesToAll

The user answered "yes" to the current prompt. If the server encounters any further prompts with the same PromptType_Type value, it MUST act as if the user has answered "yes" to that prompt without sending the prompt request to the client.

noToAll

The user answered "no" to the current prompt. If the server encounters any further prompts with the same PromptType_Type value, it MUST act as if the user has answered "no" to that prompt without sending the prompt request to the client.