Table of Contents

Interface IKNetCommon

Namespace
MASES.KNet.Connect
Assembly
MASES.KNet.dll

Helper interface for KNetCommon

public interface IKNetCommon : IKNetConnectLogging
Inherited Members

Methods

ExecuteOnRemote(string, params object[])

An helper function to execute operation in the Java side

void ExecuteOnRemote(string method, params object[] args)

Parameters

method string

Method name to be invoked

args object[]

Arguments of the method to be invoked

Exceptions

InvalidOperationException

ExecuteOnRemote<T>(string, params object[])

An helper function to read the data from Java side

T ExecuteOnRemote<T>(string method, params object[] args)

Parameters

method string

Method name to be invoked

args object[]

Arguments of the method to be invoked

Returns

T

The T

Type Parameters

T

The expected return Type

Exceptions

InvalidOperationException