rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
@@ -0,0 +1,895 @@
### YamlMime:ManagedReference
items:
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
commentId: T:adas_core.module.LightBeacons.Devices.LightBeaconAbstract
id: LightBeaconAbstract
parent: adas_core.module.LightBeacons.Devices
children:
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor(System.String,System.String)
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue(System.Object)
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed(System.Object)
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow(System.Object)
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice(System.String,System.String,System.String)
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Host
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Password
- adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed(System.Object)
langs:
- csharp
- vb
name: LightBeaconAbstract
nameWithType: LightBeaconAbstract
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
type: Class
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: LightBeaconAbstract
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 9
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract class for LightBeacon devices. Each specific LightBeacon model should inherit from this class and implement the abstract methods for controlling the LED states (CodeBlue, CodeRed, CodeYellow, PowerOffLed).
example: []
syntax:
content: public abstract class LightBeaconAbstract
content.vb: Public MustInherit Class LightBeaconAbstract
inheritance:
- System.Object
inheritedMembers:
- 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
extensionMethods:
- System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
- System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
- System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor(System.String,System.String)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor(System.String,System.String)
id: '#ctor(System.String,System.String)'
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: LightBeaconAbstract(string, string)
nameWithType: LightBeaconAbstract.LightBeaconAbstract(string, string)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.LightBeaconAbstract(string, string)
type: Constructor
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: .ctor
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 9
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract class for LightBeacon devices. Each specific LightBeacon model should inherit from this class and implement the abstract methods for controlling the LED states (CodeBlue, CodeRed, CodeYellow, PowerOffLed).
example: []
syntax:
content: protected LightBeaconAbstract(string host, string password)
parameters:
- id: host
type: System.String
description: The host address of the LightBeacon device. This is typically the IP address or hostname used to connect to the device for controlling its LED states.
- id: password
type: System.String
description: The password used for authenticating with the LightBeacon device. This is required to establish a connection and control the device's LED states securely.
content.vb: Protected Sub New(host As String, password As String)
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor*
nameWithType.vb: LightBeaconAbstract.New(String, String)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.New(String, String)
name.vb: New(String, String)
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Host
commentId: F:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Host
id: Host
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: Host
nameWithType: LightBeaconAbstract.Host
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Host
type: Field
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Host
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 14
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: The host address of the LightBeacon device. This is typically the IP address or hostname used to connect to the device for controlling its LED states.
example: []
syntax:
content: public string Host
return:
type: System.String
content.vb: Public Host As String
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Password
commentId: F:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Password
id: Password
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: Password
nameWithType: LightBeaconAbstract.Password
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.Password
type: Field
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: Password
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 19
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: The password used for authenticating with the LightBeacon device. This is required to establish a connection and control the device's LED states securely.
example: []
syntax:
content: public string Password
return:
type: System.String
content.vb: Public Password As String
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue(System.Object)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue(System.Object)
id: CodeBlue(System.Object)
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: CodeBlue(object)
nameWithType: LightBeaconAbstract.CodeBlue(object)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue(object)
type: Method
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CodeBlue
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 25
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract method to set the LightBeacon device to Code Blue state. This method should be implemented by each specific LightBeacon model to control the LED state accordingly.
example: []
syntax:
content: public abstract void CodeBlue(object entry)
parameters:
- id: entry
type: System.Object
description: An object parameter that can be used to pass additional information or context needed for setting the LED state.
content.vb: Public MustOverride Sub CodeBlue(entry As Object)
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue*
nameWithType.vb: LightBeaconAbstract.CodeBlue(Object)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue(Object)
name.vb: CodeBlue(Object)
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed(System.Object)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed(System.Object)
id: CodeRed(System.Object)
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: CodeRed(object)
nameWithType: LightBeaconAbstract.CodeRed(object)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed(object)
type: Method
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CodeRed
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 31
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract method to set the LightBeacon device to Code Red state. This method should be implemented by each specific LightBeacon model to control the LED state accordingly.
example: []
syntax:
content: public abstract void CodeRed(object entry)
parameters:
- id: entry
type: System.Object
description: An object parameter that can be used to pass additional information or context needed for setting the LED state.
content.vb: Public MustOverride Sub CodeRed(entry As Object)
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed*
nameWithType.vb: LightBeaconAbstract.CodeRed(Object)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed(Object)
name.vb: CodeRed(Object)
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow(System.Object)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow(System.Object)
id: CodeYellow(System.Object)
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: CodeYellow(object)
nameWithType: LightBeaconAbstract.CodeYellow(object)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow(object)
type: Method
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: CodeYellow
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 37
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract method to set the LightBeacon device to Code Yellow state. This method should be implemented by each specific LightBeacon model to control the LED state accordingly.
example: []
syntax:
content: public abstract void CodeYellow(object entry)
parameters:
- id: entry
type: System.Object
description: An object parameter that can be used to pass additional information or context needed for setting the LED state.
content.vb: Public MustOverride Sub CodeYellow(entry As Object)
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow*
nameWithType.vb: LightBeaconAbstract.CodeYellow(Object)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow(Object)
name.vb: CodeYellow(Object)
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed(System.Object)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed(System.Object)
id: PowerOffLed(System.Object)
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: PowerOffLed(object)
nameWithType: LightBeaconAbstract.PowerOffLed(object)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed(object)
type: Method
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: PowerOffLed
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 43
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: Abstract method to power off the LED of the LightBeacon device. This method should be implemented by each specific LightBeacon model to control the LED state accordingly.
example: []
syntax:
content: public abstract void PowerOffLed(object entry)
parameters:
- id: entry
type: System.Object
description: An object parameter that can be used to pass additional information or context needed for setting the LED state.
content.vb: Public MustOverride Sub PowerOffLed(entry As Object)
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed*
nameWithType.vb: LightBeaconAbstract.PowerOffLed(Object)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed(Object)
name.vb: PowerOffLed(Object)
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice(System.String,System.String,System.String)
commentId: M:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice(System.String,System.String,System.String)
id: GetBeaconDevice(System.String,System.String,System.String)
parent: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
langs:
- csharp
- vb
name: GetBeaconDevice(string, string, string)
nameWithType: LightBeaconAbstract.GetBeaconDevice(string, string, string)
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice(string, string, string)
type: Method
source:
remote:
path: adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
branch: document/release/1.0.1
repo: https://git.teralevel.io/adas/adas-core.git
id: GetBeaconDevice
path: ../../adas-core.module.LightBeacons/Devices/LightBeaconAbstract.cs
startLine: 53
assemblies:
- adas-core.module.LightBeacons
namespace: adas_core.module.LightBeacons.Devices
summary: >-
Static factory method to create an instance of a specific LightBeacon device based on the provided driver name, host, and password.
This method uses reflection to dynamically instantiate the appropriate LightBeacon model class that inherits from LightBeaconAbstract.
example: []
syntax:
content: public static LightBeaconAbstract? GetBeaconDevice(string driver, string host, string password)
parameters:
- id: driver
type: System.String
description: The name of the driver class for the specific LightBeacon model.
- id: host
type: System.String
description: The host address of the LightBeacon device.
- id: password
type: System.String
description: The password for authenticating with the LightBeacon device.
return:
type: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
description: An instance of the specific LightBeacon device, or null if the driver class is not found or cannot be instantiated.
content.vb: Public Shared Function GetBeaconDevice(driver As String, host As String, password As String) As LightBeaconAbstract
overload: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice*
nameWithType.vb: LightBeaconAbstract.GetBeaconDevice(String, String, String)
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice(String, String, String)
name.vb: GetBeaconDevice(String, String, String)
references:
- uid: adas_core.module.LightBeacons.Devices
commentId: N:adas_core.module.LightBeacons.Devices
href: adas_core.html
name: adas_core.module.LightBeacons.Devices
nameWithType: adas_core.module.LightBeacons.Devices
fullName: adas_core.module.LightBeacons.Devices
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.module
name: module
href: adas_core.module.html
- name: .
- uid: adas_core.module.LightBeacons
name: LightBeacons
href: adas_core.module.LightBeacons.html
- name: .
- uid: adas_core.module.LightBeacons.Devices
name: Devices
href: adas_core.module.LightBeacons.Devices.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.module
name: module
href: adas_core.module.html
- name: .
- uid: adas_core.module.LightBeacons
name: LightBeacons
href: adas_core.module.LightBeacons.html
- name: .
- uid: adas_core.module.LightBeacons.Devices
name: Devices
href: adas_core.module.LightBeacons.Devices.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.IsNumber
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.NumberUtils.ToDouble
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
parent: adas_core.Domain.Utils.NumberUtils
definition: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.adas_core.Domain.Utils.ObjectUtils.ToStr
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
parent: adas_core.Domain.Utils.ObjectUtils
definition: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
name: IsNumber(object)
nameWithType: NumberUtils.IsNumber(object)
fullName: adas_core.Domain.Utils.NumberUtils.IsNumber(object)
nameWithType.vb: NumberUtils.IsNumber(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.IsNumber(Object)
name.vb: IsNumber(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.IsNumber(System.Object)
name: IsNumber
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_IsNumber_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.NumberUtils
commentId: T:adas_core.Domain.Utils.NumberUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.NumberUtils.html
name: NumberUtils
nameWithType: NumberUtils
fullName: adas_core.Domain.Utils.NumberUtils
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
commentId: M:adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
isExternal: true
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
name: ToDouble(object)
nameWithType: NumberUtils.ToDouble(object)
fullName: adas_core.Domain.Utils.NumberUtils.ToDouble(object)
nameWithType.vb: NumberUtils.ToDouble(Object)
fullName.vb: adas_core.Domain.Utils.NumberUtils.ToDouble(Object)
name.vb: ToDouble(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.NumberUtils.ToDouble(System.Object)
name: ToDouble
href: adas_core.Domain.Utils.NumberUtils.html#adas_core_Domain_Utils_NumberUtils_ToDouble_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
commentId: M:adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
isExternal: true
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
name: ToStr(object)
nameWithType: ObjectUtils.ToStr(object)
fullName: adas_core.Domain.Utils.ObjectUtils.ToStr(object)
nameWithType.vb: ObjectUtils.ToStr(Object)
fullName.vb: adas_core.Domain.Utils.ObjectUtils.ToStr(Object)
name.vb: ToStr(Object)
spec.csharp:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: adas_core.Domain.Utils.ObjectUtils.ToStr(System.Object)
name: ToStr
href: adas_core.Domain.Utils.ObjectUtils.html#adas_core_Domain_Utils_ObjectUtils_ToStr_System_Object_
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: adas_core.Domain.Utils.ObjectUtils
commentId: T:adas_core.Domain.Utils.ObjectUtils
parent: adas_core.Domain.Utils
href: adas_core.Domain.Utils.ObjectUtils.html
name: ObjectUtils
nameWithType: ObjectUtils
fullName: adas_core.Domain.Utils.ObjectUtils
- uid: adas_core.Domain.Utils
commentId: N:adas_core.Domain.Utils
href: adas_core.html
name: adas_core.Domain.Utils
nameWithType: adas_core.Domain.Utils
fullName: adas_core.Domain.Utils
spec.csharp:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
spec.vb:
- uid: adas_core
name: adas_core
href: adas_core.html
- name: .
- uid: adas_core.Domain
name: Domain
href: adas_core.Domain.html
- name: .
- uid: adas_core.Domain.Utils
name: Utils
href: adas_core.Domain.Utils.html
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.#ctor
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract__ctor_System_String_System_String_
name: LightBeaconAbstract
nameWithType: LightBeaconAbstract.LightBeaconAbstract
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.LightBeaconAbstract
nameWithType.vb: LightBeaconAbstract.New
fullName.vb: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.New
name.vb: New
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract_CodeBlue_System_Object_
name: CodeBlue
nameWithType: LightBeaconAbstract.CodeBlue
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeBlue
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract_CodeRed_System_Object_
name: CodeRed
nameWithType: LightBeaconAbstract.CodeRed
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeRed
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract_CodeYellow_System_Object_
name: CodeYellow
nameWithType: LightBeaconAbstract.CodeYellow
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.CodeYellow
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract_PowerOffLed_System_Object_
name: PowerOffLed
nameWithType: LightBeaconAbstract.PowerOffLed
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.PowerOffLed
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice*
commentId: Overload:adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html#adas_core_module_LightBeacons_Devices_LightBeaconAbstract_GetBeaconDevice_System_String_System_String_System_String_
name: GetBeaconDevice
nameWithType: LightBeaconAbstract.GetBeaconDevice
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.GetBeaconDevice
- uid: adas_core.module.LightBeacons.Devices.LightBeaconAbstract
commentId: T:adas_core.module.LightBeacons.Devices.LightBeaconAbstract
parent: adas_core.module.LightBeacons.Devices
href: adas_core.module.LightBeacons.Devices.LightBeaconAbstract.html
name: LightBeaconAbstract
nameWithType: LightBeaconAbstract
fullName: adas_core.module.LightBeacons.Devices.LightBeaconAbstract