Show / Hide Table of Contents

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 Source

VariableFoundEventArgs(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 builder or node is null.

Properties

| Improve this Doc View Source

Builder

Gets the builder.

Declaration
public Resolver Builder { get; }
Property Value
Type Description
Resolver

The builder.

| Improve this Doc View Source

Created

Gets a value indicating whether gets a valute has received a value.

Declaration
public bool Created { get; }
Property Value
Type Description
System.Boolean

true if the variable has received a value; otherwise, false.

| Improve this Doc View Source

Node

Gets the variable.

Declaration
public VariableNode Node { get; }
Property Value
Type Description
SpiceSharpBehavioral.Parsers.Nodes.VariableNode

The variable.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX