Show / Hide Table of Contents

Class CustomUpdateData

Represents a set of custom data, each indexed by a string-key.

Inheritance
object
CustomUpdateData
Implements
ICustomUpdateData
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: RGB.NET.Core
Assembly: RGB.NET.Core.dll
Syntax
public sealed class CustomUpdateData : ICustomUpdateData

Constructors

| Edit this page View Source

CustomUpdateData()

Initializes a new instance of the CustomUpdateData class.

Declaration
public CustomUpdateData()
| Edit this page View Source

CustomUpdateData(params (string key, object value)[])

Initializes a new instance of the CustomUpdateData class.

Declaration
public CustomUpdateData(params (string key, object value)[] values)
Parameters
Type Name Description
(string key, object value)[] values

A params-list of tuples containing the key (string) and the value of a specific custom-data.

Properties

| Edit this page View Source

this[string]

Gets or sets the value for a specific key.

Declaration
public object? this[string key] { get; set; }
Parameters
Type Name Description
string key

The key of the value.

Property Value
Type Description
object

The value represented by the specified key.

Implements

ICustomUpdateData

Extension Methods

CustomUpdateDataExtension.FlushLeds(CustomUpdateData, bool)
CustomUpdateDataExtension.Heartbeat(CustomUpdateData, bool)
CustomUpdateDataExtension.Render(CustomUpdateData, bool)
CustomUpdateDataExtension.UpdateDevices(CustomUpdateData, bool)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX