Interface IArasConnection
Interface implemented by Aras connection objects which is used for coordination with the ArasVaultConnection.
Inherited Members
Namespace: Innovator.Client.Connection
Assembly: Innovator.Client.dll
Syntax
public interface IArasConnection : IAsyncConnection, IConnection
Properties
| Improve this Doc View SourceCompression
Gets the compression setting to use when sending requests to the server.
Declaration
CompressionType Compression { get; }
Property Value
Type | Description |
---|---|
CompressionType | The compression setting to use when sending requests to the server. |
DefaultSettings
Gets the default settings for configuring the HTTP request.
Declaration
List<Action<IHttpRequest>> DefaultSettings { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Action<IHttpRequest>> | The default settings for configuring the HTTP request. |
Version
Gets the major version of the Aras installation
Declaration
int Version { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The major version of the Aras installation. |
Methods
| Improve this Doc View SourceSetDefaultHeaders(Action<String, String>)
Sets the default headers for an AML request. (e.g. AUTHUSER, AUTHPASSWORD, DATABASE, LOCALE, TIMEZONE_NAME);
Declaration
void SetDefaultHeaders(Action<string, string> writer)
Parameters
Type | Name | Description |
---|---|---|
System.Action<System.String, System.String> | writer | The method to call with each header. |