Edit

Share via


Renewing Constructors

Definition

Initializes a new instance of the Renewing class.

Overloads

Renewing()

Initializes a new instance of the RenewingRenewing class with default property values.

Renewing(Boolean, Boolean)

Initializes a new instance of the RenewingRenewing class with the specified values.

Renewing()

Initializes a new instance of the RenewingRenewing class with default property values.

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

Remarks

The following table shows the initial property values for the new Renewing instance.

Property Value
AllowRenewal true
OkForRenewalAfterExpiration false

Applies to

Renewing(Boolean, Boolean)

Initializes a new instance of the RenewingRenewing class with the specified values.

public:
 Renewing(bool allowRenewal, bool okForRenewalAfterExpiration);
public Renewing (bool allowRenewal, bool okForRenewalAfterExpiration);
new System.IdentityModel.Protocols.WSTrust.Renewing : bool * bool -> System.IdentityModel.Protocols.WSTrust.Renewing
Public Sub New (allowRenewal As Boolean, okForRenewalAfterExpiration As Boolean)

Parameters

allowRenewal
Boolean

true if renewal is permitted; otherwise, false.

okForRenewalAfterExpiration
Boolean

true if the requested token can be renewed after it has expired; otherwise, false.

Remarks

The properties of the new Renewing instance are set according to the value of the parameters.

Applies to