本文整理汇总了C#中NHExt.Runtime.Proxy.ProxyContext类的典型用法代码示例。如果您正苦于以下问题:C# NHExt.Runtime.Proxy.ProxyContext类的具体用法?C# NHExt.Runtime.Proxy.ProxyContext怎么用?C# NHExt.Runtime.Proxy.ProxyContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
NHExt.Runtime.Proxy.ProxyContext类属于命名空间,在下文中一共展示了NHExt.Runtime.Proxy.ProxyContext类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DoTask
internal void DoTask(bool autoRun = false)
{
this._callerType = NHExt.Runtime.Session.CallerTypeEnum.Reflect;
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
NHExt.Runtime.Logger.LoggerInstance.RuntimeLogger.Info("系统调度任务,使用线程调度服务");
NHExt.Runtime.Proxy.TaskThreadPool.ThreadPool.AddThreadItem((state) =>
{
NHExt.Runtime.Proxy.ProxyContext pCtx = state as NHExt.Runtime.Proxy.ProxyContext;
this.DoCommon(pCtx);
}, ctx , autoRun);
}
示例2: Do
internal bool Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例3: Do
internal THU.LabSystemBE.Deploy.DeviceUseExDTO Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例4: Do
internal IWEHAVE.ERP.CenterBE.Deploy.ClientContractDTO Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例5: Do
internal IWEHAVE.ERP.CenterBP.Deploy.PreStudentExDTO Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例6: Do
internal List<IWEHAVE.ERP.CenterBE.Deploy.HandleNumDTO> Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例7: Do
internal List<THU.LabSystemBE.Deploy.CommonEnumDTO> Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}
示例8: Do
internal IWEHAVE.ERP.MotivationBE.Deploy.LogDTO Do()
{
NHExt.Runtime.Proxy.ProxyContext ctx = new NHExt.Runtime.Proxy.ProxyContext();
ctx.ProxyGuid = this._guid;
return this.DoCommon(ctx);
}