Click or drag to resize
Factory Class
Class for generating connection to an Aras Innovator instance
Inheritance Hierarchy
SystemObject
  Innovator.ClientFactory

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public static class Factory

The Factory type exposes the following members.

Properties
  NameDescription
Public propertyStatic memberImageBufferSize
How many images to buffer in memory when downloading image files. This cache is used by the AsFile(IReadOnlyProperty, IConnection, Boolean) extension method.
Top
Methods
  NameDescription
Public methodStatic memberGetConnection(String, ConnectionPreferences)
Gets an HTTP connection to an innovator instance (or proxy) at the given URL
Public methodStatic memberCode exampleGetConnection(String, String)
Gets an HTTP connection to an innovator instance (or proxy) at the given URL
Public methodStatic memberGetConnection(String, ConnectionPreferences, Boolean)
Asynchronously gets an HTTP connection to an innovator instance (or proxy) at the given URL
Top
Examples
C#
using Innovator.Client;

var conn = Factory.GetConnection("URL", "USER_AGENT");
conn.Login(new ExplicitCredentials("DATABASE", "USER_NAME", "PASSWORD"));
See Also