Interface IActivationTaggingContext
Supplied to the Activation Tagging Customization specified via WithTagging(Action<IActivationTaggingContext>).
Provides access to the state
argument passed to the IActivateLicenses Activate method.
Allows one to include Tags into the ILicense
Namespace: Sp.Agent.Configuration.Product.Activation
Assembly: Sp.Agent.dll
Properties
State
The argument value (if supplied) for the state
argument of the Activate method called on IActivateLicenses.
Declaration
object State { get; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
AddTag(String, String)
Allows one to add an additional Tag name
/value
pair to be included in the license as part of the Activation process. See Tags for details.
The State property may be used as a generic contextual input to the Action's functionality.
Declaration
void AddTag(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | value |