### YamlMime:ManagedReference items: - uid: adas_core.module.ProxyDevices.Devices.HttpDevice commentId: T:adas_core.module.ProxyDevices.Devices.HttpDevice id: HttpDevice parent: adas_core.module.ProxyDevices.Devices children: - adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object}) - adas_core.module.ProxyDevices.Devices.HttpDevice.Process - adas_core.module.ProxyDevices.Devices.HttpDevice.Stream - adas_core.module.ProxyDevices.Devices.HttpDevice.ToString langs: - csharp - vb name: HttpDevice nameWithType: HttpDevice fullName: adas_core.module.ProxyDevices.Devices.HttpDevice type: Class source: remote: path: adas-core.module.ProxyDevices/Devices/HttpDevice.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: HttpDevice path: ../../adas-core.module.ProxyDevices/Devices/HttpDevice.cs startLine: 8 assemblies: - adas-core.module.ProxyDevices namespace: adas_core.module.ProxyDevices.Devices summary: Device that can be used to get content via http with digest auth example: [] syntax: content: 'public class HttpDevice : IProxyDevice' content.vb: Public Class HttpDevice Implements IProxyDevice inheritance: - System.Object implements: - adas_core.module.ProxyDevices.Devices.IProxyDevice 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) 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.HttpDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object}) commentId: M:adas_core.module.ProxyDevices.Devices.HttpDevice.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.HttpDevice langs: - csharp - vb name: Initialize(Dictionary) nameWithType: HttpDevice.Initialize(Dictionary) fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize(System.Collections.Generic.Dictionary) type: Method source: remote: path: adas-core.module.ProxyDevices/Devices/HttpDevice.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Initialize path: ../../adas-core.module.ProxyDevices/Devices/HttpDevice.cs startLine: 48 assemblies: - adas-core.module.ProxyDevices namespace: adas_core.module.ProxyDevices.Devices summary: >- Initializes the device with the provided parameters. The parameters are expected to be in a dictionary format, where the key is a string representing the parameter name and the value is an object that can be cast to the appropriate type. The method checks for the presence of required parameters (like "url") and validates them, throwing exceptions if any issues are found. Optional parameters (like "name", "username", "password", and "domain") are also processed if they are present in the dictionary. example: [] syntax: content: public void Initialize(Dictionary 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: Public Sub Initialize(deviceParameters As Dictionary(Of String, Object)) overload: adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize* exceptions: - type: System.InvalidOperationException commentId: T:System.InvalidOperationException description: Thrown when the device is already initialized. - type: System.ArgumentNullException commentId: T:System.ArgumentNullException description: Thrown when a required parameter is missing or invalid. implements: - adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object}) nameWithType.vb: HttpDevice.Initialize(Dictionary(Of String, Object)) fullName.vb: adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize(System.Collections.Generic.Dictionary(Of String, Object)) name.vb: Initialize(Dictionary(Of String, Object)) - uid: adas_core.module.ProxyDevices.Devices.HttpDevice.Process commentId: M:adas_core.module.ProxyDevices.Devices.HttpDevice.Process id: Process parent: adas_core.module.ProxyDevices.Devices.HttpDevice langs: - csharp - vb name: Process() nameWithType: HttpDevice.Process() fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Process() type: Method source: remote: path: adas-core.module.ProxyDevices/Devices/HttpDevice.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Process path: ../../adas-core.module.ProxyDevices/Devices/HttpDevice.cs startLine: 70 assemblies: - adas-core.module.ProxyDevices namespace: adas_core.module.ProxyDevices.Devices summary: >- Processes a request by sending an HTTP GET request to the specified URI using the HttpClient. If authentication parameters were provided during initialization, they will be used for the request. The method handles potential timeouts by catching TaskCanceledException and rethrowing it as a TimeoutException with a descriptive message. The response from the HTTP request is returned as an HttpResponseMessage. example: [] syntax: content: public Task Process() return: type: System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage} description: An HttpResponseMessage representing the response from the HTTP request. content.vb: Public Function Process() As Task(Of HttpResponseMessage) overload: adas_core.module.ProxyDevices.Devices.HttpDevice.Process* exceptions: - type: System.TimeoutException commentId: T:System.TimeoutException description: Thrown when the request times out. implements: - adas_core.module.ProxyDevices.Devices.IProxyDevice.Process - uid: adas_core.module.ProxyDevices.Devices.HttpDevice.Stream commentId: M:adas_core.module.ProxyDevices.Devices.HttpDevice.Stream id: Stream parent: adas_core.module.ProxyDevices.Devices.HttpDevice langs: - csharp - vb name: Stream() nameWithType: HttpDevice.Stream() fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Stream() type: Method source: remote: path: adas-core.module.ProxyDevices/Devices/HttpDevice.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: Stream path: ../../adas-core.module.ProxyDevices/Devices/HttpDevice.cs startLine: 91 assemblies: - adas-core.module.ProxyDevices namespace: adas_core.module.ProxyDevices.Devices summary: >- Streams content from the specified URI using an HTTP GET request with the option to read response headers immediately. This method is similar to Process(), but it allows for streaming the response content as it is received, which can be useful for large responses or when you want to start processing the data before the entire response is available. Like Process(), it handles potential timeouts by catching TaskCanceledException and rethrowing it as a TimeoutException with a descriptive message. example: [] syntax: content: public Task Stream() return: type: System.Threading.Tasks.Task{System.Net.Http.HttpResponseMessage} description: An HttpResponseMessage representing the response from the HTTP request. content.vb: Public Function Stream() As Task(Of HttpResponseMessage) overload: adas_core.module.ProxyDevices.Devices.HttpDevice.Stream* exceptions: - type: System.TimeoutException commentId: T:System.TimeoutException description: Thrown when the request times out. implements: - adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream - uid: adas_core.module.ProxyDevices.Devices.HttpDevice.ToString commentId: M:adas_core.module.ProxyDevices.Devices.HttpDevice.ToString id: ToString parent: adas_core.module.ProxyDevices.Devices.HttpDevice langs: - csharp - vb name: ToString() nameWithType: HttpDevice.ToString() fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.ToString() type: Method source: remote: path: adas-core.module.ProxyDevices/Devices/HttpDevice.cs branch: document/release/1.0.1 repo: https://git.teralevel.io/adas/adas-core.git id: ToString path: ../../adas-core.module.ProxyDevices/Devices/HttpDevice.cs startLine: 126 assemblies: - adas-core.module.ProxyDevices namespace: adas_core.module.ProxyDevices.Devices summary: Returns a string representation of the HttpDevice instance, including its name, URI, username, password, and domain. This can be useful for logging or debugging purposes to quickly identify the configuration of the device. example: [] syntax: content: public override string ToString() return: type: System.String description: A string representation of the HttpDevice instance. content.vb: Public Overrides Function ToString() As String overridden: System.Object.ToString overload: adas_core.module.ProxyDevices.Devices.HttpDevice.ToString* 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 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: adas_core.module.ProxyDevices.Devices.IProxyDevice commentId: T:adas_core.module.ProxyDevices.Devices.IProxyDevice parent: adas_core.module.ProxyDevices.Devices href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html name: IProxyDevice nameWithType: IProxyDevice fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice - 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.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: System.InvalidOperationException commentId: T:System.InvalidOperationException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception name: InvalidOperationException nameWithType: InvalidOperationException fullName: System.InvalidOperationException - uid: System.ArgumentNullException commentId: T:System.ArgumentNullException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception name: ArgumentNullException nameWithType: ArgumentNullException fullName: System.ArgumentNullException - uid: adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize* commentId: Overload:adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize href: adas_core.module.ProxyDevices.Devices.HttpDevice.html#adas_core_module_ProxyDevices_Devices_HttpDevice_Initialize_System_Collections_Generic_Dictionary_System_String_System_Object__ name: Initialize nameWithType: HttpDevice.Initialize fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Initialize - 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}) parent: adas_core.module.ProxyDevices.Devices.IProxyDevice isExternal: true 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(Dictionary) nameWithType: IProxyDevice.Initialize(Dictionary) fullName: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary) 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)) spec.csharp: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object}) name: 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: ( - 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: '>' - name: ) spec.vb: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Initialize(System.Collections.Generic.Dictionary{System.String,System.Object}) name: 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: ( - 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: ) - name: ) - 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 nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary 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 nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary 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: System.TimeoutException commentId: T:System.TimeoutException isExternal: true href: https://learn.microsoft.com/dotnet/api/system.timeoutexception name: TimeoutException nameWithType: TimeoutException fullName: System.TimeoutException - uid: adas_core.module.ProxyDevices.Devices.HttpDevice.Process* commentId: Overload:adas_core.module.ProxyDevices.Devices.HttpDevice.Process href: adas_core.module.ProxyDevices.Devices.HttpDevice.html#adas_core_module_ProxyDevices_Devices_HttpDevice_Process name: Process nameWithType: HttpDevice.Process fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Process - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process commentId: M:adas_core.module.ProxyDevices.Devices.IProxyDevice.Process parent: adas_core.module.ProxyDevices.Devices.IProxyDevice 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() spec.csharp: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process name: Process href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Process - name: ( - name: ) spec.vb: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Process name: Process href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Process - name: ( - name: ) - 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 nameWithType: Task fullName: System.Threading.Tasks.Task 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 nameWithType: Task fullName: System.Threading.Tasks.Task 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.HttpDevice.Stream* commentId: Overload:adas_core.module.ProxyDevices.Devices.HttpDevice.Stream href: adas_core.module.ProxyDevices.Devices.HttpDevice.html#adas_core_module_ProxyDevices_Devices_HttpDevice_Stream name: Stream nameWithType: HttpDevice.Stream fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.Stream - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream commentId: M:adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream parent: adas_core.module.ProxyDevices.Devices.IProxyDevice 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() spec.csharp: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream name: Stream href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Stream - name: ( - name: ) spec.vb: - uid: adas_core.module.ProxyDevices.Devices.IProxyDevice.Stream name: Stream href: adas_core.module.ProxyDevices.Devices.IProxyDevice.html#adas_core_module_ProxyDevices_Devices_IProxyDevice_Stream - name: ( - 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: adas_core.module.ProxyDevices.Devices.HttpDevice.ToString* commentId: Overload:adas_core.module.ProxyDevices.Devices.HttpDevice.ToString href: adas_core.module.ProxyDevices.Devices.HttpDevice.html#adas_core_module_ProxyDevices_Devices_HttpDevice_ToString name: ToString nameWithType: HttpDevice.ToString fullName: adas_core.module.ProxyDevices.Devices.HttpDevice.ToString - 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