IssuedSecurityTokenParameters 构造函数

定义

初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class.

重载

IssuedSecurityTokenParameters()

初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class.

IssuedSecurityTokenParameters(IssuedSecurityTokenParameters)

初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class.

IssuedSecurityTokenParameters(String)

使用指定的标记类型初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type.

IssuedSecurityTokenParameters(String, EndpointAddress)

使用指定的标记类型和颁发者地址初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type and issuer address.

IssuedSecurityTokenParameters(String, EndpointAddress, Binding)

使用指定的标记类型、颁发者地址和颁发者绑定初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type, issuer address and issuer binding.

注解

这些重载之间的区别是各个实例属性值的来源。The difference between these overloads is where instance property values come from. IssuedSecurityTokenParameters 将它们设置为各自的默认值。IssuedSecurityTokenParameters sets them to their default values. IssuedSecurityTokenParameters 从输入参数引用的实例中获取它们。IssuedSecurityTokenParameters takes them from the instance referenced by the input parameter.

其他构造函数将它们设置为各自的默认值,然后再根据输入参数设置其他属性。The other constructors set them to their default values and then set other properties based on the input parameters.

IssuedSecurityTokenParameters()

初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class.

public:
 IssuedSecurityTokenParameters();
public IssuedSecurityTokenParameters ();
Public Sub New ()

注解

将新实例属性值设置为各自的默认值:The new instance property values are set to their defaults:

适用于

IssuedSecurityTokenParameters(IssuedSecurityTokenParameters)

初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class.

protected:
 IssuedSecurityTokenParameters(System::ServiceModel::Security::Tokens::IssuedSecurityTokenParameters ^ other);
protected IssuedSecurityTokenParameters (System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters other);
new System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters : System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters -> System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters
Protected Sub New (other As IssuedSecurityTokenParameters)

参数

other
IssuedSecurityTokenParameters

该类的其他实例。The other instance of this class.

例外

othernullother is null.

注解

将新实例属性值设置为 other 中相应的值。The new instance property values are set to the corresponding values in other.

适用于

IssuedSecurityTokenParameters(String)

使用指定的标记类型初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type.

public:
 IssuedSecurityTokenParameters(System::String ^ tokenType);
public IssuedSecurityTokenParameters (string tokenType);
new System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters : string -> System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters
Public Sub New (tokenType As String)

参数

tokenType
String

令牌类型。The token type.

注解

将新实例属性值设置为各自的默认值:The new instance property values are set to their defaults:

适用于

IssuedSecurityTokenParameters(String, EndpointAddress)

使用指定的标记类型和颁发者地址初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type and issuer address.

public:
 IssuedSecurityTokenParameters(System::String ^ tokenType, System::ServiceModel::EndpointAddress ^ issuerAddress);
public IssuedSecurityTokenParameters (string tokenType, System.ServiceModel.EndpointAddress issuerAddress);
new System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters : string * System.ServiceModel.EndpointAddress -> System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters
Public Sub New (tokenType As String, issuerAddress As EndpointAddress)

参数

tokenType
String

令牌类型。The token type.

issuerAddress
EndpointAddress

颁发令牌的终结点的地址。The address of the endpoint that issues the token.

注解

将新实例属性值设置为各自的默认值:The new instance property values are set to their defaults:

适用于

IssuedSecurityTokenParameters(String, EndpointAddress, Binding)

使用指定的标记类型、颁发者地址和颁发者绑定初始化 IssuedSecurityTokenParameters 类的新实例。Initializes a new instance of the IssuedSecurityTokenParameters class using the specified token type, issuer address and issuer binding.

public:
 IssuedSecurityTokenParameters(System::String ^ tokenType, System::ServiceModel::EndpointAddress ^ issuerAddress, System::ServiceModel::Channels::Binding ^ issuerBinding);
public IssuedSecurityTokenParameters (string tokenType, System.ServiceModel.EndpointAddress issuerAddress, System.ServiceModel.Channels.Binding issuerBinding);
new System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters : string * System.ServiceModel.EndpointAddress * System.ServiceModel.Channels.Binding -> System.ServiceModel.Security.Tokens.IssuedSecurityTokenParameters
Public Sub New (tokenType As String, issuerAddress As EndpointAddress, issuerBinding As Binding)

参数

tokenType
String

令牌类型。The token type.

issuerAddress
EndpointAddress

颁发令牌的终结点的地址。The address of the endpoint that issues the token.

issuerBinding
Binding

绑定颁发者。The binding of the issuer.

注解

将新实例属性值设置为各自的默认值:The new instance property values are set to their defaults:

适用于