Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
WMS_AUTHENTICATION_RESULT
The WMS_AUTHENTICATION_RESULT enumeration type identifies the status of a request to authenticate a client.
Syntax
typedef enum WMS_AUTHENTICATION_RESULT{
WMS_AUTHENTICATION_SUCCESS = 0x01,
WMS_AUTHENTICATION_DENIED = 0x02,
WMS_AUTHENTICATION_CONTINUE = 0x03,
WMS_AUTHENTICATION_ERROR = 0x04
};
Members
WMS_AUTHENTICATION_SUCCESS
Notifies the server that authentication has succeeded.
WMS_AUTHENTICATION_DENIED
Notifies the server that authentication has been denied.
WMS_AUTHENTICATION_CONTINUE
Notifies the server that the authentication process is not complete, and that the server must request more data from the user.
WMS_AUTHENTICATION_ERROR
Notifies the server that an error occurred during the authentication process.
Remarks
You can use this enumeration in an authentication plug-in when you call the OnAuthenticateComplete method on the IWMSAuthenticationCallback interface to inform the server about the results of the authentication process.
Requirements
Header: authen.h.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003 family, Windows Server 2008 family.
See Also
- Enumeration Types
- IWMSAuthenticationCallback.OnAuthenticateComplete (C#)
- IWMSAuthenticationCallback.OnAuthenticateComplete (Visual Basic .NET)
- IWMSAuthenticationCallback::OnAuthenticateComplete
| Previous | Next |