本文整理汇总了C#中T4MVC_System_Web_Mvc_ViewResult类的典型用法代码示例。如果您正苦于以下问题:C# T4MVC_System_Web_Mvc_ViewResult类的具体用法?C# T4MVC_System_Web_Mvc_ViewResult怎么用?C# T4MVC_System_Web_Mvc_ViewResult使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
T4MVC_System_Web_Mvc_ViewResult类属于命名空间,在下文中一共展示了T4MVC_System_Web_Mvc_ViewResult类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SendFeedbackOverride
partial void SendFeedbackOverride(T4MVC_System_Web_Mvc_ViewResult callInfo);
示例2: EditOverride
partial void EditOverride(T4MVC_System_Web_Mvc_ViewResult callInfo, long id);
示例3: CreateOverride
partial void CreateOverride(T4MVC_System_Web_Mvc_ViewResult callInfo, long clientId);
示例4: Edit
public override System.Web.Mvc.ViewResult Edit(Alicargo.DataAccess.Contracts.Enums.EventType id, string lang)
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.Edit);
ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "id", id);
ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "lang", lang);
EditOverride(callInfo, id, lang);
return callInfo;
}
示例5: IndexOverride
partial void IndexOverride(T4MVC_System_Web_Mvc_ViewResult callInfo);
示例6: Success
public override System.Web.Mvc.ViewResult Success()
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.Success);
SuccessOverride(callInfo);
return callInfo;
}
示例7: AboutUs
public override System.Web.Mvc.ViewResult AboutUs()
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.AboutUs);
AboutUsOverride(callInfo);
return callInfo;
}
示例8: SomeViewResultActionOverride
partial void SomeViewResultActionOverride(T4MVC_System_Web_Mvc_ViewResult callInfo);
示例9: SomeViewResultAction
public override System.Web.Mvc.ViewResult SomeViewResultAction()
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.SomeViewResultAction);
SomeViewResultActionOverride(callInfo);
return callInfo;
}
示例10: EditOverride
partial void EditOverride(T4MVC_System_Web_Mvc_ViewResult callInfo, int userInClassId);
示例11: EditOverride
partial void EditOverride(T4MVC_System_Web_Mvc_ViewResult callInfo, int yearEventsId);
示例12: Add
public override System.Web.Mvc.ViewResult Add(System.Guid userId)
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.Add);
ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "userId", userId);
AddOverride(callInfo, userId);
return callInfo;
}
示例13: AddOverride
partial void AddOverride(T4MVC_System_Web_Mvc_ViewResult callInfo, System.Guid userId);
示例14: SendFeedback
public override System.Web.Mvc.ViewResult SendFeedback()
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.SendFeedback);
SendFeedbackOverride(callInfo);
return callInfo;
}
示例15: LogoutUser
public override System.Web.Mvc.ViewResult LogoutUser()
{
var callInfo = new T4MVC_System_Web_Mvc_ViewResult(Area, Name, ActionNames.LogoutUser);
LogoutUserOverride(callInfo);
return callInfo;
}