CroCodIle documentation

xInvokeService<T>

Description

Allows for a contract to be exposed remotely to other processes for invocation

Usage

ISomeContractHere SomeContractHereInstance = new SomeContractHereClass();
xInvokeService<ISomeContractHere> SomeContractHereService = new xInvokeService<ISomeContractHere>(SomeContractHereInstance, "SomeServiceNameHere");
ISomeContractHere (line 1) is to demonstrate that SomeContractHereClass implements the ISomeContractHere interface

Methods


xInvokeClient<T>

Description

Allows an application to call across to a remote application transparently

Usage

xInvokeClient<ISomeContractHere> SomeClientHereInstance = new xInvokeClient<ISomeContractHere>("SomeServiceNameHere");
SomeClientHereInstance.Begin();

Methods