Class Resolver.VariableFoundEventArgs<T>
Event arguments used when a variable was found.
Inheritance
System.Object
System.EventArgs
Resolver.VariableFoundEventArgs<T>
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.Parsers.Expression.Implementation
Assembly: SpiceSharpParser.dll
Syntax
public class VariableFoundEventArgs<T> : EventArgs
Type Parameters
Name | Description |
---|---|
T | The value type. |
Constructors
| Improve this Doc View SourceVariableFoundEventArgs(Resolver, VariableNode)
Initializes a new instance of the Resolver.VariableFoundEventArgs<T> class.
Declaration
public VariableFoundEventArgs(Resolver builder, VariableNode node)
Parameters
Type | Name | Description |
---|---|---|
Resolver | builder | The builder. |
SpiceSharpBehavioral.Parsers.Nodes.VariableNode | node | The variable node. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | Throw if |
Properties
| Improve this Doc View SourceBuilder
Gets the builder.
Declaration
public Resolver Builder { get; }
Property Value
Type | Description |
---|---|
Resolver | The builder. |
Created
Gets a value indicating whether gets a valute has received a value.
Declaration
public bool Created { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Node
Gets the variable.
Declaration
public VariableNode Node { get; }
Property Value
Type | Description |
---|---|
SpiceSharpBehavioral.Parsers.Nodes.VariableNode | The variable. |
Result
Gets or sets the result of the variable.
Declaration
public T Result { get; set; }
Property Value
Type | Description |
---|---|
T | The value of the variable. |