EAP_METHOD_PROPERTY_VALUE union (eaptypes.h)

The EAP_METHOD_PROPERTY_VALUE union contains the value of an EAP method property.

Syntax

typedef union _EAP_METHOD_PROPERTY_VALUE {
  EAP_METHOD_PROPERTY_VALUE_BOOL   empvBool;
  EAP_METHOD_PROPERTY_VALUE_DWORD  empvDword;
  EAP_METHOD_PROPERTY_VALUE_STRING empvString;
} EAP_METHOD_PROPERTY_VALUE;

Members

empvBool

case(empvtBool)

If eapMethodPropertyValueType specifies a Boolean type (empvtBool), the data pointed to by this parameter is defined by the EAP_METHOD_PROPERTY_VALUE_BOOL structure.

empvDword

case(empvDword)

If eapMethodPropertyValueType specifies a DWORD type (empvtDword), the data pointed to by this parameter is defined by the EAP_METHOD_PROPERTY_VALUE_DWORD structure.

empvString

case(empvString)

If eapMethodPropertyValueType specifies a BYTE *(empvtString), the data pointed to by this parameter is defined by the EAP_METHOD_PROPERTY_VALUE_STRING structure.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Header eaptypes.h

See also

EAPHost Supplicant Structures

EAP_METHOD_PROPERTY

EapHostPeerGetMethodProperties