Class SendableBuilderImpl
Inheritance
SendableBuilderImpl
Assembly: WPILibSharp.dll
Syntax
public class SendableBuilderImpl : ISendableBuilder
Properties
|
Improve this Doc
View Source
Actuator
Declaration
public bool Actuator { set; }
Property Value
|
Improve this Doc
View Source
SafeState
Declaration
public Action SafeState { set; }
Property Value
|
Improve this Doc
View Source
SmartDashboardType
Declaration
public string SmartDashboardType { set; }
Property Value
|
Improve this Doc
View Source
Table
Declaration
public NetworkTable Table { get; set; }
Property Value
|
Improve this Doc
View Source
UpdateTable
Declaration
public Action UpdateTable { set; }
Property Value
Methods
|
Improve this Doc
View Source
AddBooleanArrayProperty(String, Func<Boolean[]>, Action<Boolean[]>)
Declaration
public void AddBooleanArrayProperty(string key, Func<bool[]> getter, Action<bool[]> setter)
Parameters
|
Improve this Doc
View Source
AddBooleanProperty(String, Func<Boolean>, Action<Boolean>)
Declaration
public void AddBooleanProperty(string key, Func<bool> getter, Action<bool> setter)
Parameters
|
Improve this Doc
View Source
AddDoubleArrayProperty(String, Func<Double[]>, Action<Double[]>)
Declaration
public void AddDoubleArrayProperty(string key, Func<double[]> getter, Action<double[]> setter)
Parameters
|
Improve this Doc
View Source
AddDoubleProperty(String, Func<Double>, Action<Double>)
Declaration
public void AddDoubleProperty(string key, Func<double> getter, Action<double> setter)
Parameters
|
Improve this Doc
View Source
AddRawProperty(String, Func<Byte[]>, Action<Byte[]>)
Declaration
public void AddRawProperty(string key, Func<byte[]> getter, Action<byte[]> setter)
Parameters
|
Improve this Doc
View Source
AddStringArrayProperty(String, Func<String[]>, Action<String[]>)
Declaration
public void AddStringArrayProperty(string key, Func<string[]> getter, Action<string[]> setter)
Parameters
|
Improve this Doc
View Source
AddStringProperty(String, Func<String>, Action<String>)
Declaration
public void AddStringProperty(string key, Func<string> getter, Action<string> setter)
Parameters
|
Improve this Doc
View Source
AddValueProperty(String, Func<NetworkTableValue>, Action<NetworkTableValue>)
Declaration
public void AddValueProperty(string key, Func<NetworkTableValue> getter, Action<NetworkTableValue> setter)
Parameters
|
Improve this Doc
View Source
ClearProperties()
Declaration
public void ClearProperties()
|
Improve this Doc
View Source
GetEntry(String)
Declaration
public NetworkTableEntry GetEntry(string key)
Parameters
Type |
Name |
Description |
String |
key |
|
Returns
|
Improve this Doc
View Source
StartListeners()
Declaration
public void StartListeners()
|
Improve this Doc
View Source
StopListeners()
Declaration
public void StopListeners()
|
Improve this Doc
View Source
TriggerUpdateTable()
Declaration
public void TriggerUpdateTable()
Implements