645 lines
25 KiB
YAML
645 lines
25 KiB
YAML
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
commentId: T:adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
id: IProxyDevice
|
|
parent: adas_core.module.ProxyDevices.Devices
|
|
children:
|
|
- adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object})
|
|
- adas_core.module.ProxyDevices.Devices.IProxyDevice.Process
|
|
- adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: IProxyDevice
|
|
nameWithType: IProxyDevice
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
type: Interface
|
|
source:
|
|
remote:
|
|
path: adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: IProxyDevice
|
|
path: ../../adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
startLine: 6
|
|
assemblies:
|
|
- adas-core.module.ProxyDevices
|
|
namespace: adas_core.module.ProxyDevices.Devices
|
|
summary: >-
|
|
Interface for a proxy device that can be used to process and stream data. This interface defines the methods that must be implemented by any class that wants to act as a proxy device.
|
|
|
|
The Initialize method is used to set up the device with the necessary parameters, while the Process and Stream methods are used to handle data processing and streaming respectively.
|
|
example: []
|
|
syntax:
|
|
content: public interface IProxyDevice
|
|
content.vb: Public Interface IProxyDevice
|
|
derivedClasses:
|
|
- adas_core.module.ProxyDevices.Devices.HttpDevice
|
|
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.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object})
|
|
commentId: M:adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object})
|
|
id: Initialize(System.Collections.Generic.Dictionary{System.String,System.Object})
|
|
parent: adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Initialize(Dictionary<string, object?>)
|
|
nameWithType: IProxyDevice.Initialize(Dictionary<string, object?>)
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary<string, object?>)
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Initialize
|
|
path: ../../adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
startLine: 13
|
|
assemblies:
|
|
- adas-core.module.ProxyDevices
|
|
namespace: adas_core.module.ProxyDevices.Devices
|
|
summary: >-
|
|
Initializes the proxy device with the given parameters. This method should be called before any processing or streaming is done.
|
|
|
|
The parameters can include any necessary configuration settings for the device, such as connection details, authentication information, or other relevant data.
|
|
example: []
|
|
syntax:
|
|
content: void Initialize(Dictionary<string, object?> deviceParameters)
|
|
parameters:
|
|
- id: deviceParameters
|
|
type: System.Collections.Generic.Dictionary{System.String,System.Object}
|
|
description: A dictionary containing the parameters required to initialize the device.
|
|
content.vb: Sub Initialize(deviceParameters As Dictionary(Of String, Object))
|
|
overload: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize*
|
|
nameWithType.vb: IProxyDevice.Initialize(Dictionary(Of String, Object))
|
|
fullName.vb: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary(Of String, Object))
|
|
name.vb: Initialize(Dictionary(Of String, Object))
|
|
- uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process
|
|
commentId: M:adas_core.module.ProxyDevices.Devices.IProxyDevice.Process
|
|
id: Process
|
|
parent: adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Process()
|
|
nameWithType: IProxyDevice.Process()
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Process
|
|
path: ../../adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
startLine: 19
|
|
assemblies:
|
|
- adas-core.module.ProxyDevices
|
|
namespace: adas_core.module.ProxyDevices.Devices
|
|
summary: Processes the data received by the proxy device. This method should contain the logic for handling incoming data, performing any necessary transformations or computations, and preparing the data for further use.
|
|
example: []
|
|
syntax:
|
|
content: Task<HttpResponseMessage> Process()
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage}
|
|
description: A task that represents the asynchronous operation. The task result contains the HttpResponseMessage returned by the device's Process method.
|
|
content.vb: Function Process() As Task(Of HttpResponseMessage)
|
|
overload: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process*
|
|
- uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream
|
|
commentId: M:adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream
|
|
id: Stream
|
|
parent: adas_core.module.ProxyDevices.Devices.IProxyDevice
|
|
langs:
|
|
- csharp
|
|
- vb
|
|
name: Stream()
|
|
nameWithType: IProxyDevice.Stream()
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream()
|
|
type: Method
|
|
source:
|
|
remote:
|
|
path: adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
branch: document/release/1.0.1
|
|
repo: https://git.teralevel.io/adas/adas-core.git
|
|
id: Stream
|
|
path: ../../adas-core.module.ProxyDevices/Devices/IProxyDevice.cs
|
|
startLine: 25
|
|
assemblies:
|
|
- adas-core.module.ProxyDevices
|
|
namespace: adas_core.module.ProxyDevices.Devices
|
|
summary: Streams data from the proxy device. This method should contain the logic for handling outgoing data, performing any necessary transformations or computations, and preparing the data for further use.
|
|
example: []
|
|
syntax:
|
|
content: Task<HttpResponseMessage> Stream()
|
|
return:
|
|
type: System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage}
|
|
description: A task that represents the asynchronous operation. The task result contains the HttpResponseMessage returned by the device's Stream method.
|
|
content.vb: Function Stream() As Task(Of HttpResponseMessage)
|
|
overload: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream*
|
|
references:
|
|
- uid: adas_core.module.ProxyDevices.Devices
|
|
commentId: N:adas_core.module.ProxyDevices.Devices
|
|
href: adas_core.html
|
|
name: adas_core.module.ProxyDevices.Devices
|
|
nameWithType: adas_core.module.ProxyDevices.Devices
|
|
fullName: adas_core.module.ProxyDevices.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.ProxyDevices
|
|
name: ProxyDevices
|
|
href: adas_core.module.ProxyDevices.html
|
|
- name: .
|
|
- uid: adas_core.module.ProxyDevices.Devices
|
|
name: Devices
|
|
href: adas_core.module.ProxyDevices.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.ProxyDevices
|
|
name: ProxyDevices
|
|
href: adas_core.module.ProxyDevices.html
|
|
- name: .
|
|
- uid: adas_core.module.ProxyDevices.Devices
|
|
name: Devices
|
|
href: adas_core.module.ProxyDevices.Devices.html
|
|
- 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: 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.ProxyDevices.Devices.IProxyDevice.Initialize*
|
|
commentId: Overload:adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize
|
|
href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Initialize_System_Collections_Generic_Dictionary_System_String_System_Object__
|
|
name: Initialize
|
|
nameWithType: IProxyDevice.Initialize
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize
|
|
- uid: System.Collections.Generic.Dictionary{System.String,System.Object}
|
|
commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object}
|
|
parent: System.Collections.Generic
|
|
definition: System.Collections.Generic.Dictionary`2
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
name: Dictionary<string, object>
|
|
nameWithType: Dictionary<string, object>
|
|
fullName: System.Collections.Generic.Dictionary<string, object>
|
|
nameWithType.vb: Dictionary(Of String, Object)
|
|
fullName.vb: System.Collections.Generic.Dictionary(Of String, Object)
|
|
name.vb: Dictionary(Of String, Object)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: <
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Object
|
|
name: Object
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
|
- name: )
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
commentId: T:System.Collections.Generic.Dictionary`2
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
name: Dictionary<TKey, TValue>
|
|
nameWithType: Dictionary<TKey, TValue>
|
|
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
|
|
nameWithType.vb: Dictionary(Of TKey, TValue)
|
|
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
|
|
name.vb: Dictionary(Of TKey, TValue)
|
|
spec.csharp:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: <
|
|
- name: TKey
|
|
- name: ','
|
|
- name: " "
|
|
- name: TValue
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Collections.Generic.Dictionary`2
|
|
name: Dictionary
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TKey
|
|
- name: ','
|
|
- name: " "
|
|
- name: TValue
|
|
- name: )
|
|
- uid: System.Collections.Generic
|
|
commentId: N:System.Collections.Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Collections.Generic
|
|
nameWithType: System.Collections.Generic
|
|
fullName: System.Collections.Generic
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Collections
|
|
name: Collections
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections
|
|
- name: .
|
|
- uid: System.Collections.Generic
|
|
name: Generic
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
|
|
- uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process*
|
|
commentId: Overload:adas_core.module.ProxyDevices.Devices.IProxyDevice.Process
|
|
href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Process
|
|
name: Process
|
|
nameWithType: IProxyDevice.Process
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process
|
|
- uid: System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage}
|
|
commentId: T:System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage}
|
|
parent: System.Threading.Tasks
|
|
definition: System.Threading.Tasks.Task`1
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<HttpResponseMessage>
|
|
nameWithType: Task<HttpResponseMessage>
|
|
fullName: System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage>
|
|
nameWithType.vb: Task(Of HttpResponseMessage)
|
|
fullName.vb: System.Threading.Tasks.Task(Of System.Net.Http.HttpResponseMessage)
|
|
name.vb: Task(Of HttpResponseMessage)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- uid: System.Net.Http.HttpResponseMessage
|
|
name: HttpResponseMessage
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.net.http.httpresponsemessage
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.Net.Http.HttpResponseMessage
|
|
name: HttpResponseMessage
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.net.http.httpresponsemessage
|
|
- name: )
|
|
- uid: System.Threading.Tasks.Task`1
|
|
commentId: T:System.Threading.Tasks.Task`1
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
name: Task<TResult>
|
|
nameWithType: Task<TResult>
|
|
fullName: System.Threading.Tasks.Task<TResult>
|
|
nameWithType.vb: Task(Of TResult)
|
|
fullName.vb: System.Threading.Tasks.Task(Of TResult)
|
|
name.vb: Task(Of TResult)
|
|
spec.csharp:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: <
|
|
- name: TResult
|
|
- name: '>'
|
|
spec.vb:
|
|
- uid: System.Threading.Tasks.Task`1
|
|
name: Task
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- name: TResult
|
|
- name: )
|
|
- uid: System.Threading.Tasks
|
|
commentId: N:System.Threading.Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
name: System.Threading.Tasks
|
|
nameWithType: System.Threading.Tasks
|
|
fullName: System.Threading.Tasks
|
|
spec.csharp:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
spec.vb:
|
|
- uid: System
|
|
name: System
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system
|
|
- name: .
|
|
- uid: System.Threading
|
|
name: Threading
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading
|
|
- name: .
|
|
- uid: System.Threading.Tasks
|
|
name: Tasks
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
|
|
- uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream*
|
|
commentId: Overload:adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream
|
|
href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Stream
|
|
name: Stream
|
|
nameWithType: IProxyDevice.Stream
|
|
fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream
|