public static Ice.DispatchStatus SetWriteLogFlag___(LogServer_RPC obj__, IceInternal.Incoming inS__, Ice.Current current__) { Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode); IceInternal.BasicStream is__ = inS__.startReadParams(); bool bWrite; bWrite = is__.readBool(); inS__.endReadParams(); obj__.SetWriteLogFlag(bWrite, current__); inS__.writeEmptyParams__(); return(Ice.DispatchStatus.DispatchOK); }
public static Ice.DispatchStatus WriteLogInit___(LogServer_RPC obj__, IceInternal.Incoming inS__, Ice.Current current__) { Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode); IceInternal.BasicStream is__ = inS__.startReadParams(); IRPC.LogInitInfo InitInfo; InitInfo = null; InitInfo = IRPC.LogInitInfo.read__(is__, InitInfo); inS__.endReadParams(); bool ret__ = obj__.WriteLogInit(InitInfo, current__); IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat); os__.writeBool(ret__); inS__.endWriteParams__(true); return(Ice.DispatchStatus.DispatchOK); }
public static Ice.DispatchStatus WriteLog___(LogServer_RPC obj__, IceInternal.Incoming inS__, Ice.Current current__) { Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode); IceInternal.BasicStream is__ = inS__.startReadParams(); string strServerID; string strPluginName; string strLog; int LogLevel; strServerID = is__.readString(); strPluginName = is__.readString(); strLog = is__.readString(); LogLevel = is__.readInt(); inS__.endReadParams(); obj__.WriteLog(strServerID, strPluginName, strLog, LogLevel, current__); inS__.writeEmptyParams__(); return(Ice.DispatchStatus.DispatchOK); }