Table of Contents

Class PlaceholderValueNeededEventArgs

Namespace
Tlumach
Assembly
Tlumach.dll

Contains the arguments of the ParameterValueNEeded event.

public class PlaceholderValueNeededEventArgs : EventArgs
Inheritance
PlaceholderValueNeededEventArgs
Inherited Members

Constructors

PlaceholderValueNeededEventArgs(string, int)

public PlaceholderValueNeededEventArgs(string name, int index)

Parameters

name string
index int

Properties

CacheValue

Gets or sets the indicator telling the unit that the value should be cached until further notification.

public bool CacheValue { get; set; }

Property Value

bool

Index

Gets the index of the placeholder whose value is requested. May be -1.

public int Index { get; }

Property Value

int

Name

Gets the name of the placeholder whose value is requested.

public string Name { get; }

Property Value

string

Value

Gets or sets the value for the placeholder.

public object? Value { get; set; }

Property Value

object