The INSSAuthenticator::GetAuthenticatorClass method is called to retrieve the class ID of the authenticator object.
Syntax
HRESULT GetAuthenticatorClass(
GUID *pCLSID
);
Parameters
[out] pCLSID
Specifies the class ID of the authenticator object.
Return Values
This method should return S_OK upon successful completion, or an HRESULT error value.
Remarks
The following sample code demonstrates a skeletal implementation of this method:
HRESULT CSampleAuthenticator::GetAuthenticatorClass( GUID *pCLSID )
{
*pCLSID = CLSID_SampleAuthenticator;
return( S_OK );
}
See Also
© 1996-1998 Microsoft Corporation. All rights reserved.