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.9.36244
Syntaxpublic Innovator(
IServerConnection serverConnection
)
Public Sub New (
serverConnection As IServerConnection
)
public Innovator(
IServerConnection serverConnection
)
public function Innovator(
serverConnection : IServerConnection
)
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