GetAuthenticationImage method
After an authentication request this function can be called to obtain a bitmap of the grid.
C++ syntax
public : HRESULT GetAuthenticationImage(VARIANT *imageData); 
C# syntax
object GetAuthenticationImage(); 
Parameters 
imageData  A byte array containing a bitmap of the grid.
Return value 
Returns S_OK if successful.
 
    SetGridResetPIPAttribute method
Call this function before an authentication request to add a RADIUS payload attribute to inform the DSS that the user's GrIDsure PIP should be changed.
C++ syntax
public : HRESULT SetGridResetPIPAttribute(void); 
C# syntax
void SetGridResetPIPAttribute(); 
Parameters 
None
Return value 
Always returns S_OK
 
    payload property
After an authentication request this property will return an array of RADIUS payload attributes returned by the DSS. Each payload attribute will be returned as a struct RADIUSPayloadAttribute.
C++ syntax
public : HRESULT get_payload(SAFEARRAY(struct RADIUSPayloadAttribute) * payload); 
C# syntax
public Array payload { get; } 
 
    grIDsureMessage property
After an authentication request this property will return the GrIDsure challenge.
C++ syntax
public : HRESULT get_grIDsureMessage(BSTR *message); 
C# syntax
public string grIDsureMessage { get; }