ANHAdmin.ProcessCaller.ProcessCaller C# (CSharp) Method

ProcessCaller() public method

Initialises a ProcessCaller with an association to the supplied ISynchronizeInvoke. All events raised from this object will be delivered via this target. (This might be a Control object, so events would be delivered to that Control's UI thread.)
public ProcessCaller ( ISynchronizeInvoke isi ) : System
isi ISynchronizeInvoke An object implementing the /// ISynchronizeInvoke interface. All events will be delivered /// through this target, ensuring that they are delivered to the /// correct thread.
return System
        public ProcessCaller(ISynchronizeInvoke isi)
            : base(isi)
        {
        }