Binarysharp.MemoryManagement.Modules.RemoteModule.this C# (CSharp) Method

this() public method

Gets the specified function in the remote module.
public this ( string functionName ) : RemoteFunction
functionName string The name of the function.
return RemoteFunction
        public RemoteFunction this[string functionName]
        {
            get { return FindFunction(functionName); }
        }