Click or drag to resize

Innovator Constructor

The constructor must be __ONLY__ used from internal code (Aras.Server.Core.dll). The only reason it's declared public is that IOM and Aras.Server.Core.dll are separate DLLs and there is no way in .NET languages to declare a class from one library visible to only a particular library or class in it (something like "friend" in C++).

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public Innovator(
	IServerConnection serverConnection
)

Parameters

serverConnection
Type: Aras.IOMIServerConnection
On server side, the parameter is an instance of the server context (CCO).
Examples
VB.Net Dim innovator as Innovator = new Innovator(serverConnection)
See Also