Class SpecialTokenEventArgs
Event arguments for a special token
Inherited Members
Namespace: FluentMigrator.Runner.BatchParser
Assembly: FluentMigrator.Runner.Core.dll
Syntax
public class SpecialTokenEventArgs : EventArgs
Constructors
SpecialTokenEventArgs(string, object)
Initializes a new instance of the SpecialTokenEventArgs class.
Declaration
public SpecialTokenEventArgs(string token, object opaque)
Parameters
Type | Name | Description |
---|---|---|
string | token | The found token |
object | opaque | An opaque (token specific) value |
Properties
Opaque
Gets an opaque (token specific) value
Declaration
[CanBeNull]
public object Opaque { get; }
Property Value
Type | Description |
---|---|
object |
Token
Gets the found token
Declaration
[NotNull]
public string Token { get; }
Property Value
Type | Description |
---|---|
string |