本文整理汇总了C#中IceInternal.readEmptyParams方法的典型用法代码示例。如果您正苦于以下问题:C# IceInternal.readEmptyParams方法的具体用法?C# IceInternal.readEmptyParams怎么用?C# IceInternal.readEmptyParams使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IceInternal
的用法示例。
在下文中一共展示了IceInternal.readEmptyParams方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ice_ping___
public static DispatchStatus ice_ping___(Ice.Object __obj, IceInternal.Incoming inS__, Current __current)
{
inS__.readEmptyParams();
__obj.ice_ping(__current);
inS__.writeEmptyParams__();
return DispatchStatus.DispatchOK;
}
示例2: ice_id___
public static DispatchStatus ice_id___(Ice.Object __obj, IceInternal.Incoming inS__, Current __current)
{
inS__.readEmptyParams();
string __ret = __obj.ice_id(__current);
IceInternal.BasicStream os__ = inS__.startWriteParams__(FormatType.DefaultFormat);
os__.writeString(__ret);
inS__.endWriteParams__(true);
return DispatchStatus.DispatchOK;
}
示例3: get_blacklist___
public static Ice.DispatchStatus get_blacklist___(AppService obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
try
{
_System.Collections.Generic.List<minie.irpc.cm_user_defriend_rpc> ret__ = obj__.get_blacklist(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
minie.irpc.cm_user_defriend_rpc_listHelper.write(os__, ret__);
os__.writePendingObjects();
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}
catch(minie.irpc.GenericError ex__)
{
inS__.writeUserException__(ex__, Ice.FormatType.DefaultFormat);
return Ice.DispatchStatus.DispatchUserException;
}
}
示例4: shutdown___
public static Ice.DispatchStatus shutdown___(BaseToBot obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
obj__.shutdown(current__);
inS__.writeEmptyParams__();
return Ice.DispatchStatus.DispatchOK;
}
示例5: getStatus___
public static Ice.DispatchStatus getStatus___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
checkMode__(Ice.OperationMode.Idempotent, current__.mode);
inS__.readEmptyParams();
string ret__ = obj__.getStatus(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
os__.writeString(ret__);
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}
示例6: get_user_info___
public static Ice.DispatchStatus get_user_info___(AppService obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
try
{
minie.irpc.cm_user_rpc ret__ = obj__.get_user_info(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
os__.writeObject(ret__);
os__.writePendingObjects();
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}
catch(minie.irpc.GenericError ex__)
{
inS__.writeUserException__(ex__, Ice.FormatType.DefaultFormat);
return Ice.DispatchStatus.DispatchUserException;
}
}
示例7: stopsignals___
public static Ice.DispatchStatus stopsignals___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
checkMode__(Ice.OperationMode.Idempotent, current__.mode);
inS__.readEmptyParams();
obj__.stopsignals(current__);
inS__.writeEmptyParams__();
return Ice.DispatchStatus.DispatchOK;
}
示例8: get_permissions___
public static Ice.DispatchStatus get_permissions___(BackendService obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
_System.Collections.Generic.List<minie.irpc.sys_permission_rpc> ret__ = obj__.get_permissions(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
minie.irpc.sys_permission_rpc_listHelper.write(os__, ret__);
os__.writePendingObjects();
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}
示例9: get_current_user_info___
public static Ice.DispatchStatus get_current_user_info___(BackendService obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
minie.irpc.sys_user_rpc ret__ = obj__.get_current_user_info(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
os__.writeObject(ret__);
os__.writePendingObjects();
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}
示例10: logout___
public static Ice.DispatchStatus logout___(BaseService obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
Ice.ObjectImpl.checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
obj__.logout(current__);
inS__.writeEmptyParams__();
return Ice.DispatchStatus.DispatchOK;
}
示例11: getBalance___
public static Ice.DispatchStatus getBalance___(Account obj__, IceInternal.Incoming inS__, Ice.Current current__)
{
checkMode__(Ice.OperationMode.Normal, current__.mode);
inS__.readEmptyParams();
int ret__ = obj__.getBalance(current__);
IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
os__.writeInt(ret__);
inS__.endWriteParams__(true);
return Ice.DispatchStatus.DispatchOK;
}