Provides any variable data contained in the message to be displayed to the user after each invocation of the Authenticate method.
C++ syntaxpublic : HRESULT get_challengeMessageData(BSTR * messageData);
C# syntaxpublic string challengeMessageData { get; }
.
Method |
Description |
Allows RADIUS payload attributes to be added to the authentication request. | |
Gets the raw data used to construct the GrIDsure grid. | |
Returns the GrIDsure grid as a byte array containing a bitmap. | |
Adds a RADIUS payload attributes to the authentication request indicating that the GrIDsure PIP should be reset. |
Property |
Description |
Gets an array of any RADIUS payload attributes returned in response to the previous request. | |
The GrIDsure specific message to be displayed to the user in response to the previous request. | |
The type of GrIDsure grid to be displayed. |
Allows RADIUS payload attributes to be added to the authentication request. Typically this method is used when the authenticating server or an intermediary requires additional information about the authenticating party.
The structure used to pass data to this function is defined below:
struct RADIUSPayloadAttribute
{
DWORD vendorId;
unsigned char type;
unsigned char length;
unsigned char data[253];
};
C++ syntaxpublic : HRESULT AddPayload(struct RADIUSPayloadAttribute *payload)
C# syntaxvoid AddPayload(ref RADIUSPayloadAttribute payload);
Parameters
payload Application specific payload data as a struct RADIUSPayloadAttribute.
Return value
Always returns S_OK.
After an authentication request this method can be called to determine whether a user has a grid available and the state of that grid.
C++ syntaxpublic : HRESULT GetGridData(BSTR *grid, VARIANT_BOOL *isRegistrationGrid, VARIANT_BOOL *isGrIDsureOnly, VARIANT_BOOL *hasGrid);
C# syntaxbool GetGridData(out string grid, out bool isRegistrationGrid, out bool isGrIDsureOnly);
Parameters
Return value
Always returns S_OK.
© 2021 One Identity LLC. ALL RIGHTS RESERVED. Feedback Términos de uso Privacidad