Theater SDK Banner 

Art
[Previous][Next]

INSSAuthenticator::GetAuthenticatorClass

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 must return S_OK upon successful completion, or an HRESULT error code.

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

INSSAuthenticator::GetAuthenticationType

[Previous][Next]



© 1996-1998 Microsoft Corporation. All rights reserved