SecureBlackbox 2020 C++ Edition

Questions / Feedback?

OutputType Property

Returns the SAML type of message being created.

Syntax

ANSI (Cross Platform)
int GetOutputType();

Unicode (Windows)
INT GetOutputType();

Possible Values

CSTY_NONE(0), 
CSTY_ASSERTION_IDREQUEST(1),
CSTY_SUBJECT_QUERY(2),
CSTY_AUTHN_QUERY(3),
CSTY_ATTRIBUTE_QUERY(4),
CSTY_AUTHZ_DECISION_QUERY(5),
CSTY_AUTHN_REQUEST(6),
CSTY_MANAGE_NAME_IDREQUEST(7),
CSTY_LOGOUT_REQUEST(8),
CSTY_NAME_IDMAPPING_REQUEST(9),
CSTY_ARTIFACT_RESOLVE(10),
CSTY_RESPONSE(11)
@property (nonatomic,readonly,assign,getter=outputType) int outputType;
- (int)outputType;

Possible Values

CSTY_NONE(0), 
CSTY_ASSERTION_IDREQUEST(1),
CSTY_SUBJECT_QUERY(2),
CSTY_AUTHN_QUERY(3),
CSTY_ATTRIBUTE_QUERY(4),
CSTY_AUTHZ_DECISION_QUERY(5),
CSTY_AUTHN_REQUEST(6),
CSTY_MANAGE_NAME_IDREQUEST(7),
CSTY_LOGOUT_REQUEST(8),
CSTY_NAME_IDMAPPING_REQUEST(9),
CSTY_ARTIFACT_RESOLVE(10),
CSTY_RESPONSE(11)
#define PID_SAMLWRITER_OUTPUTTYPE 127

SECUREBLACKBOX_EXTERNAL void* SECUREBLACKBOX_CALL SecureBlackbox_SAMLWriter_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);

Default Value

0

Remarks

Use this property to check the type of SAML message being created. This is the same value that was passed to CreateNew call.

Depending on the assigned type, use properties of class to tune up the parameters of the chosen message type. For example, if setting OutputType to cstyAuthnQuery, use AuthnQuery property to adjust context class references or comparison settings.

This property is read-only and not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 C++ Edition - Version 20.0 [Build 8166]