| Lasso Reference Manual | ||||
|---|---|---|---|---|
Figure 82. Schema fragment for samlp2:Scoping
<complexType name="ScopingType">
<sequence>
<element ref="samlp:IDPList" minOccurs="0"/>
<element ref="samlp:RequesterID" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="ProxyCount" type="nonNegativeInteger" use="optional"/>
</complexType>
typedef struct {
LassoNode parent;
/* elements */
LassoSamlp2IDPList *IDPList;
char *RequesterID;
/* attributes */
char *ProxyCount;
} LassoSamlp2Scoping;
LassoNode* lasso_samlp2_scoping_new (void);
Creates a new LassoSamlp2Scoping object.
| Returns : | a newly created LassoSamlp2Scoping object |