Share via


NameSuffixTransform.Suffix Property

 

Gets or sets the suffix string for this transform.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public string Suffix { get; set; }
public:
property String^ Suffix {
    String^ get();
    void set(String^ value);
}
member Suffix : string with get, set
Public Property Suffix As String

Property Value

Type: System.String

The suffix string for this transform.

Remarks

This is the string to which to transform a UPN or e-mail suffix before sending the claim out to the trusted realm or to an internal server in the trusting realm. For example, if this string is @fabrikam.com, a claim using an e-mail name with the address of user@fabrikam.sales.com would be transformed to user@fabrikam.com before it is sent to the trusted realm.

See Also

NameSuffixTransform Class
System.Web.Security.SingleSignOn Namespace

Return to top