EAP_METHOD_INFO structure (eaptypes.h)

The EAP_METHOD_INFO structure contains information about an EAP method.

Syntax

typedef struct _EAP_METHOD_INFO {
  EAP_METHOD_TYPE         eaptype;
  LPWSTR                  pwszAuthorName;
  LPWSTR                  pwszFriendlyName;
  DWORD                   eapProperties;
  struct _EAP_METHOD_INFO *pInnerMethodInfo;
} EAP_METHOD_INFO;

Members

eaptype

EAP_METHOD_TYPE structure that identifies the EAP method.

pwszAuthorName

Pointer to a zero-terminated Unicode string that contains the name of the EAP method's author.

pwszFriendlyName

Pointer to a zero-terminated Unicode string that contains the display name of the EAP method.

eapProperties

Set of flags that describe specific properties of the EAP method. For flag descriptions, see EAP Method Properties.

pInnerMethodInfo

Pointer to an EAP_METHOD_INFO structure that contains information about the inner method.

Requirements

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

See also

Common EAPHost API Structures

EAP Method Properties

EAP_METHOD_INFO_ARRAY

EAP_METHOD_INFO_ARRAY_EX

EAP_METHOD_INFO_EX

EAP_METHOD_TYPE