CommunicationLayer.GetIpcSettings(Object, Object, String) Method
Definition
Gets all settings needed for the IPC
public abstract void GetIpcSettings (out object outLocation, out object inLocation, out string assemblyLocation);
Parameters
- outLocation
- System.Object
The "location" (whether that be a pipe name or port) that will allow communication from the "outside" (The engine.)
- inLocation
- System.Object
The "location" (whether that be a pipe name or port) that will allow the client to communication to the engine.
- assemblyLocation
- System.String
The location of the assembly that the engine needs to load.
To provide the location of an assembly System.Reflection.Assembly.Location can be used.
This can be null to say that no additional assembly is needed.