Click or drag to resize
IRemoteConnection Interface
An HTTP connection to an innovator instance (or proxy) that is not located in the same memory space as the current code

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public interface IRemoteConnection : IAsyncConnection, 
	IConnection, IDisposable

The IRemoteConnection type exposes the following members.

Properties
  NameDescription
Public propertyAmlContext
AML context used for creating AML objects and formatting AML statements
(Inherited from IConnection.)
Public propertyDatabase
Name of the connected database
(Inherited from IConnection.)
Public propertyUrl
URL that the instance resides at
Public propertyUserId
ID of the authenticated user
(Inherited from IConnection.)
Top
Methods
  NameDescription
Public methodClone
Gets a new connection logged in with the same credentials
Public methodCreateUploadCommand
Creates an upload request used for uploading files to the server
(Inherited from IConnection.)
Public methodDefaultSettings
Use a method to configure each outgoing HTTP request
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
Public methodGetDatabases
Returns a set of databases which can be connected to using this URL
Public methodLogin(ICredentials)
Log in to the database
Public methodLogin(ICredentials, Boolean)
Log in to the database asynchronosuly
Public methodLogout(Boolean)
Log out of the database
Public methodLogout(Boolean, Boolean)
Log out of the database
Public methodMapClientUrl
Expands a relative URL to a full URL
(Inherited from IConnection.)
Public methodProcess(Command)
Calls a SOAP action asynchronously
(Inherited from IConnection.)
Public methodProcess(Command, Boolean)
Calls a SOAP action asynchronously
(Inherited from IAsyncConnection.)
Top
Extension Methods
  NameDescription
Public Extension MethodCode exampleApply
Get the result of executing the specified AML query
(Defined by ConnectionExtensions.)
Public Extension MethodApplyAsync
Get the result of executing the specified AML query
(Defined by ConnectionExtensions.)
Public Extension MethodApplySql(Command, Boolean)Overloaded.
Get the result of executing the specified SQL query
(Defined by ConnectionExtensions.)
Public Extension MethodApplySql(Command, Object)Overloaded.
Get the result of executing the specified SQL query
(Defined by ConnectionExtensions.)
Public Extension MethodAsDb (Defined by ConnectionExtensions.)
Public Extension MethodItemById(String, String)Overloaded.
Retrieve an item based on its type and ID
(Defined by ConnectionExtensions.)
Public Extension MethodItemByIdT(String, String, FuncIReadOnlyItem, T)Overloaded.
Retrieve an item based on its type and ID and map it to an object
(Defined by ConnectionExtensions.)
Public Extension MethodItemByKeyedName
Retrieve an item based on its type and keyed name
(Defined by ConnectionExtensions.)
Public Extension MethodItemByQuery(Command)Overloaded.
Get a single item from the database using the specified query. If the result is not a single item, an exception will be thrown
(Defined by ConnectionExtensions.)
Public Extension MethodItemByQuery(Command, Boolean)Overloaded.
Get a single item from the database using the specified query asynchronously. If the result is not a single item, an exception will be thrown
(Defined by ConnectionExtensions.)
Public Extension MethodLock (Defined by ConnectionExtensions.)
Public Extension MethodNextSequence (Defined by ConnectionExtensions.)
Public Extension MethodPromote (Defined by ConnectionExtensions.)
Public Extension MethodUnlock (Defined by ConnectionExtensions.)
Top
See Also