ClaimFactory.CreateCustomClaimTransform Method (CustomClaim, String)
Creates a CustomClaimTransform populated with a CustomClaim.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public CustomClaimTransform CreateCustomClaimTransform(
CustomClaim corporate,
string customName
)
public:
CustomClaimTransform^ CreateCustomClaimTransform(
CustomClaim^ corporate,
String^ customName
)
member CreateCustomClaimTransform :
corporate:CustomClaim *
customName:string -> CustomClaimTransform
Public Function CreateCustomClaimTransform (
corporate As CustomClaim,
customName As String
) As CustomClaimTransform
Parameters
corporate
Type: System.Web.Security.SingleSignOn.CustomClaimThe CustomClaim object that represents a corporate claim.
customName
Type: System.StringThe name for the incoming or outgoing claim.
Return Value
Type: System.Web.Security.SingleSignOn.CustomClaimTransform
A CustomClaimTransform object.
Remarks
The transform represents one of the following:
How an incoming claim is transformed to a corporate claim.
How a corporate claim is transformed to an outgoing claim.
In the first instance, the customName is the incoming claim name. In the second instance, the customName is the outgoing claim name.
See Also
CreateCustomClaimTransform Overload
ClaimFactory Class
System.Web.Security.SingleSignOn Namespace
Return to top