TRUSTED_DOMAIN_AUTH_INFORMATION-Struktur (ntsecapi.h)
Die TRUSTED_DOMAIN_AUTH_INFORMATION-Struktur wird verwendet, um Authentifizierungsinformationen für eine vertrauenswürdige Domäne abzurufen. Die LsaQueryTrustedDomainInfo-Funktion verwendet diese Struktur, wenn ihr InformationClass-Parameter auf TrustedDomainAuthInformation festgelegt ist.
Syntax
typedef struct _TRUSTED_DOMAIN_AUTH_INFORMATION {
ULONG IncomingAuthInfos;
PLSA_AUTH_INFORMATION IncomingAuthenticationInformation;
PLSA_AUTH_INFORMATION IncomingPreviousAuthenticationInformation;
ULONG OutgoingAuthInfos;
PLSA_AUTH_INFORMATION OutgoingAuthenticationInformation;
PLSA_AUTH_INFORMATION OutgoingPreviousAuthenticationInformation;
} TRUSTED_DOMAIN_AUTH_INFORMATION, *PTRUSTED_DOMAIN_AUTH_INFORMATION;
Member
IncomingAuthInfos
Gibt die Anzahl der Einträge in den Arrays IncomingAuthenticationInformation und IncomingPreviousAuthenticationInformation an.
IncomingAuthenticationInformation
Zeiger auf ein Array von LSA_AUTH_INFORMATION Strukturen, die die Authentifizierungsinformationen für die eingehende Seite einer Vertrauensstellung enthalten.
IncomingPreviousAuthenticationInformation
Zeiger auf ein Array von LSA_AUTH_INFORMATION Strukturen, die die vorherigen Authentifizierungsinformationen (oder das alte Kennwort) für die eingehende Seite einer Vertrauensstellung enthalten. Für jeden Eintrag im Array IncomingAuthenticationInformation muss eine dieser Einträge vorhanden sein.
OutgoingAuthInfos
Gibt die Anzahl der Einträge in den Arrays OutgoingAuthenticationInformation und OutgoingPreviousAuthenticationInformation an.
OutgoingAuthenticationInformation
Zeiger auf ein Array von LSA_AUTH_INFORMATION Strukturen, die die Authentifizierungsinformationen für die ausgehende Seite einer Vertrauensstellung enthalten.
OutgoingPreviousAuthenticationInformation
Zeiger auf ein Array von LSA_AUTH_INFORMATION Strukturen, die die vorherigen Authentifizierungsinformationen (oder das alte Kennwort) für die ausgehende Seite einer Vertrauensstellung enthalten. Für jeden Eintrag im Array OutgoingAuthenticationInformation muss eine dieser Einträge vorhanden sein.
Anforderungen
Anforderung | Wert |
---|---|
Unterstützte Mindestversion (Client) | Windows XP [nur Desktop-Apps] |
Unterstützte Mindestversion (Server) | Windows Server 2003 [nur Desktop-Apps] |
Kopfzeile | ntsecapi.h |