Claim.CreateDnsClaim(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a Claim object that represents the specified Domain Name System (DNS) name.
public:
static System::IdentityModel::Claims::Claim ^ CreateDnsClaim(System::String ^ dns);
public static System.IdentityModel.Claims.Claim CreateDnsClaim (string dns);
static member CreateDnsClaim : string -> System.IdentityModel.Claims.Claim
Public Shared Function CreateDnsClaim (dns As String) As Claim
Parameters
- dns
- String
The DNS name of the entity associated with the claim. This parameter must not be null
. If this parameter is null
, this method throws a ArgumentNullException exception.
Returns
The Claim object this method creates.
Exceptions
The dns
parameter is null
.
Remarks
The Claim object this method creates has the property values shown in the following table.
Property | Value |
---|---|
ClaimType | Dns |
Resource | The value of the dns parameter. |
Right | PossessProperty |