Método INetwork2::IsDomainAuthenticatedBy (netlistmgr.h)
Consulta si el método de autenticación de dominio especificado se realizó correctamente para esta red.
Sintaxis
HRESULT IsDomainAuthenticatedBy(
NLM_DOMAIN_AUTHENTICATION_KIND domainAuthenticationKind,
BOOL *pValue
);
Parámetros
domainAuthenticationKind
Tipo: [in] NLM_DOMAIN_AUTHENTICATION_KIND
Método de autenticación de dominio específico sobre el que se va a consultar.
pValue
Tipo: [out, retval] BOOL*
La función desreferencia pValueTRUE
y asigna si esta red tiene el mismo tipo de autenticación de dominio que el especificado en el parámetro domainAuthenticationKind; o FALSE
si esta red tiene un tipo de autenticación de dominio diferente del especificado en domainAuthenticationKind.
Valor devuelto
Devuelve S_OK si se ejecuta correctamente.
Ejemplo
En este ejemplo, una herramienta hipotética de diagnóstico de red busca asegurarse de que las conexiones a una red corporativa tengan propiedades de autenticación correctas.
void LogToConsole(std::wstring output, std::wstring networkName)
{
// Implementation not shown for brevity.
}
void RunDiagnostics()
{
winrt::com_ptr<::INetworkListManager> nlm;
winrt::com_ptr<::IEnumNetworks> enumNetworks;
winrt::com_ptr<::INetwork> network;
ULONG numberOfNetworksEnumerated{ 0 };
winrt::check_hresult(::CoCreateInstance(CLSID_NetworkListManager, nullptr, CLSCTX_ALL, IID_PPV_ARGS(&nlm)));
winrt::check_hresult(nlm->GetNetworks(NLM_ENUM_NETWORK_ALL, enumNetworks.put()));
while ((enumNetworks->Next(1, network.put(), &numberOfNetworksEnumerated) == S_OK))
{
try
{
if (numberOfNetworksEnumerated == 1)
{
winrt::com_ptr<::INetwork2> network2{ network.as<::INetwork2>() };
BSTR networkName{};
HRESULT hr{ network2->GetName(&networkName) };
winrt::check_hresult(network2->GetName(&networkName));
BOOL isLdapAuthenticated{ FALSE };
BOOL isTlsAuthenticated{ FALSE };
BOOL isNotDomainAuthenticated{ FALSE };
winrt::check_hresult(network2->IsDomainAuthenticatedBy(NLM_DOMAIN_AUTHENTICATION_KIND_LDAP, &isLdapAuthenticated));
winrt::check_hresult(network2->IsDomainAuthenticatedBy(NLM_DOMAIN_AUTHENTICATION_KIND_TLS, &isTlsAuthenticated));
winrt::check_hresult(network2->IsDomainAuthenticatedBy(NLM_DOMAIN_AUTHENTICATION_KIND_NONE, &isNotDomainAuthenticated));
if (!isNotDomainAuthenticated)
{
if (!!isLdapAuthenticated)
{
LogToConsole(L"Network is domain authenticated via LDAP", networkName);
}
if (!!isTlsAuthenticated)
{
LogToConsole(L"Network is domain authenticated via TLS", networkName);
}
if (!isLdapAuthenticated && !isTlsAuthenticated)
{
LogToConsole(L"Network was not expected to be domain authenticated for any other kinds", networkName);
}
}
else
{
LogToConsole(L"Network is not domain authenticated", networkName);
}
}
}
catch (...)
{
// Handle exception.
}
}
}
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible | compilación 22621 de Windows 11 |
Plataforma de destino | Windows |
Encabezado | netlistmgr.h |