ClaimFactory.CreateGroupClaimTransform Method (Object, String)
Creates a GroupClaimTransform object populated with a GroupClaim object.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public GroupClaimTransform CreateGroupClaimTransform(
object o,
string groupName
)
public:
GroupClaimTransform^ CreateGroupClaimTransform(
Object^ o,
String^ groupName
)
member CreateGroupClaimTransform :
o:Object *
groupName:string -> GroupClaimTransform
Public Function CreateGroupClaimTransform (
o As Object,
groupName As String
) As GroupClaimTransform
Parameters
o
Type: System.ObjectThe GroupClaim to use.
groupName
Type: System.StringThe name of the incoming or outgoing claim.
Return Value
Type: System.Web.Security.SingleSignOn.GroupClaimTransform
A GroupClaimTransform 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
CreateGroupClaimTransform Overload
ClaimFactory Class
System.Web.Security.SingleSignOn Namespace
Return to top