Show / Hide Table of Contents

Class SendableRegistry

Inheritance
Object
SendableRegistry
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: WPILib.SmartDashboard
Assembly: WPILibSharp.dll
Syntax
public class SendableRegistry

Properties

| Improve this Doc View Source

DataHandle

Declaration
public int DataHandle { get; }
Property Value
Type Description
Int32
| Improve this Doc View Source

Instance

Declaration
public static SendableRegistry Instance { get; }
Property Value
Type Description
SendableRegistry

Methods

| Improve this Doc View Source

Add(ISendable, String)

Declaration
public void Add(ISendable sendable, string name)
Parameters
Type Name Description
ISendable sendable
String name
| Improve this Doc View Source

Add(ISendable, String, Int32)

Declaration
public void Add(ISendable sendable, string moduleType, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 channel
| Improve this Doc View Source

Add(ISendable, String, Int32, Int32)

Declaration
public void Add(ISendable sendable, string moduleType, int moduleNumber, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 moduleNumber
Int32 channel
| Improve this Doc View Source

Add(ISendable, String, String)

Declaration
public void Add(ISendable sendable, string subsystem, string name)
Parameters
Type Name Description
ISendable sendable
String subsystem
String name
| Improve this Doc View Source

AddChild(ISendable, ISendable)

Declaration
public void AddChild(ISendable parent, ISendable child)
Parameters
Type Name Description
ISendable parent
ISendable child
| Improve this Doc View Source

AddLW(ISendable, String)

Declaration
public void AddLW(ISendable sendable, string name)
Parameters
Type Name Description
ISendable sendable
String name
| Improve this Doc View Source

AddLW(ISendable, String, Int32)

Declaration
public void AddLW(ISendable sendable, string moduleType, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 channel
| Improve this Doc View Source

AddLW(ISendable, String, Int32, Int32)

Declaration
public void AddLW(ISendable sendable, string moduleType, int moduleNumber, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 moduleNumber
Int32 channel
| Improve this Doc View Source

AddLW(ISendable, String, String)

Declaration
public void AddLW(ISendable sendable, string subsystem, string name)
Parameters
Type Name Description
ISendable sendable
String subsystem
String name
| Improve this Doc View Source

Contains(ISendable)

Declaration
public bool Contains(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
Returns
Type Description
Boolean
| Improve this Doc View Source

DisableLiveWindow(ISendable)

Declaration
public void DisableLiveWindow(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
| Improve this Doc View Source

EnableLiveWindow(ISendable)

Declaration
public void EnableLiveWindow(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
| Improve this Doc View Source

GetData(ISendable, Int32)

Declaration
public object GetData(ISendable sendable, int handle)
Parameters
Type Name Description
ISendable sendable
Int32 handle
Returns
Type Description
Object
| Improve this Doc View Source

GetName(ISendable)

Declaration
public string GetName(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
Returns
Type Description
String
| Improve this Doc View Source

GetSubsystem(ISendable)

Declaration
public string GetSubsystem(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
Returns
Type Description
String
| Improve this Doc View Source

Publish(ISendable, NetworkTable)

Declaration
public void Publish(ISendable sendable, NetworkTable table)
Parameters
Type Name Description
ISendable sendable
NetworkTable table
| Improve this Doc View Source

Remove(ISendable)

Declaration
public bool Remove(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
Returns
Type Description
Boolean
| Improve this Doc View Source

SetData(ISendable, Int32, Object)

Declaration
public object SetData(ISendable sendable, int handle, object data)
Parameters
Type Name Description
ISendable sendable
Int32 handle
Object data
Returns
Type Description
Object
| Improve this Doc View Source

SetName(ISendable, String)

Declaration
public void SetName(ISendable sendable, string name)
Parameters
Type Name Description
ISendable sendable
String name
| Improve this Doc View Source

SetName(ISendable, String, Int32)

Declaration
public void SetName(ISendable sendable, string moduleType, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 channel
| Improve this Doc View Source

SetName(ISendable, String, Int32, Int32)

Declaration
public void SetName(ISendable sendable, string moduleType, int moduleNumber, int channel)
Parameters
Type Name Description
ISendable sendable
String moduleType
Int32 moduleNumber
Int32 channel
| Improve this Doc View Source

SetName(ISendable, String, String)

Declaration
public void SetName(ISendable sendable, string subsystem, string name)
Parameters
Type Name Description
ISendable sendable
String subsystem
String name
| Improve this Doc View Source

SetSubsystem(ISendable, String)

Declaration
public void SetSubsystem(ISendable sendable, string subsystem)
Parameters
Type Name Description
ISendable sendable
String subsystem
| Improve this Doc View Source

Update(ISendable)

Declaration
public void Update(ISendable sendable)
Parameters
Type Name Description
ISendable sendable
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 RobotDotNet