Condividi tramite


DAV_CALLBACK_AUTH_UNP struttura (davclnt.h)

Archivia il nome utente e le informazioni sulla password recuperate dalla funzione di callback DavAuthCallback .

Sintassi

typedef struct _DAV_CALLBACK_AUTH_UNP {
  LPWSTR pszUserName;
  ULONG  ulUserNameLength;
  LPWSTR pszPassword;
  ULONG  ulPasswordLength;
} DAV_CALLBACK_AUTH_UNP, *PDAV_CALLBACK_AUTH_UNP;

Members

pszUserName

Puntatore a una stringa contenente il nome utente. Questa stringa viene allocata dalla funzione di callback DavAuthCallback .

ulUserNameLength

Lunghezza, in WCHAR, del nome utente, non incluso il carattere NULL terminante.

pszPassword

Puntatore a una stringa contenente la password. Questa stringa viene allocata da DavAuthCallback.

ulPasswordLength

Lunghezza, in WCHAR, della password, non inclusa la terminazione del carattere NULL .

Commenti

Questa struttura è inclusa come membro della struttura DAV_CALLBACK_CRED .

La funzione di callback DavFreeCredCallback deve liberare solo il buffer a cui punta il membro pBuffer , non l'intera struttura.

Requisiti

   
Client minimo supportato Windows Vista con SP2 [solo app desktop]
Server minimo supportato Windows Server 2008 con SP2 [solo app desktop]
Intestazione davclnt.h

Vedi anche

DAV_CALLBACK_AUTH_BLOB

DavAuthCallback