ClaimFactory.CreateCustomClaimTransform Method (Object, String)
Creates a CustomClaimTransform populated with a CustomClaim object.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public CustomClaimTransform CreateCustomClaimTransform(
object o,
string customName
)
public:
CustomClaimTransform^ CreateCustomClaimTransform(
Object^ o,
String^ customName
)
member CreateCustomClaimTransform :
o:Object *
customName:string -> CustomClaimTransform
Public Function CreateCustomClaimTransform (
o As Object,
customName As String
) As CustomClaimTransform
Parameters
o
Type: System.ObjectThe object to use.
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