本文整理汇总了C#中ControllerContext类的典型用法代码示例。如果您正苦于以下问题:C# ControllerContext类的具体用法?C# ControllerContext怎么用?C# ControllerContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ControllerContext类属于命名空间,在下文中一共展示了ControllerContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExecuteResult
public override void ExecuteResult(ControllerContext context)
{
if (context == null)
{
throw new ArgumentNullException("context");
}
HttpResponseBase response = context.HttpContext.Response;
if (!string.IsNullOrEmpty(ContentType))
{
response.ContentType = ContentType;
}
else
{
response.ContentType = "application/json";
}
if (ContentEncoding != null)
{
response.ContentEncoding = ContentEncoding;
}
if (Data != null)
{
var enumerable = Data as IEnumerable;
if (enumerable != null)
{
Data = new {d = enumerable};
}
var serializer = new JavaScriptSerializer();
response.Write(serializer.Serialize(Data));
}
}
示例2: Init
public void Init()
{
var en = CultureInfo.CreateSpecificCulture("en");
Thread.CurrentThread.CurrentCulture = en;
Thread.CurrentThread.CurrentUICulture = en;
helper = new FormHelper();
subscription = new Subscription();
mock = new MockClass();
months = new[] {new Month(1, "January"), new Month(1, "February")};
product = new Product("memory card", 10, (decimal) 12.30);
user = new SimpleUser();
users = new[] { new SimpleUser(1, false), new SimpleUser(2, true), new SimpleUser(3, false), new SimpleUser(4, true) };
mock.Values = new[] { 2, 3 };
var controller = new HomeController();
var context = new ControllerContext();
context.PropertyBag.Add("product", product);
context.PropertyBag.Add("user", user);
context.PropertyBag.Add("users", users);
context.PropertyBag.Add("roles", new[] { new Role(1, "a"), new Role(2, "b"), new Role(3, "c") });
context.PropertyBag.Add("sendemail", true);
context.PropertyBag.Add("confirmation", "abc");
context.PropertyBag.Add("fileaccess", FileAccess.Read);
context.PropertyBag.Add("subscription", subscription);
context.PropertyBag.Add("months", months);
context.PropertyBag.Add("mock", mock);
helper.SetController(controller, context);
}
示例3: ExecuteResult
public override void ExecuteResult(ControllerContext context)
{
if (context == null)
{
throw new ArgumentNullException("context");
}
if ((this.JsonRequestBehavior == JsonRequestBehavior.DenyGet) && string.Equals(context.HttpContext.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase))
{
throw new InvalidOperationException("JsonRequest_GetNotAllowed");
}
HttpResponseBase response = context.HttpContext.Response;
if (!string.IsNullOrEmpty(this.ContentType))
{
response.ContentType = this.ContentType;
}
else
{
response.ContentType = "application/json";
}
if (this.ContentEncoding != null)
{
response.ContentEncoding = this.ContentEncoding;
}
if (this.Data != null)
{
var json = JsonConvert.SerializeObject(this.Data, Formatting.Indented, new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.Objects });
response.Write(json);
}
}
示例4: ExecuteResult
/// <summary>
/// Enables processing of the result of an action method by a
/// custom type that inherits from
/// <see cref="T:System.Web.Mvc.ActionResult"/>.
/// </summary>
/// <param name="context">The context within which the
/// result is executed.</param>
public override void ExecuteResult(ControllerContext context)
{
if (context == null)
throw new ArgumentNullException("context");
HttpResponseBase response = context.HttpContext.Response;
if (!String.IsNullOrEmpty(ContentType))
response.ContentType = ContentType;
else
response.ContentType = "application/javascript";
if (ContentEncoding != null)
response.ContentEncoding = ContentEncoding;
if (Callback == null || Callback.Length == 0)
{
Callback = context.HttpContext.
Request.QueryString["callback"];
}
if (Data != null)
{
// The JavaScriptSerializer type was marked as obsolete
// prior to .NET Framework 3.5 SP1
JavaScriptSerializer serializer =
new JavaScriptSerializer();
string ser = serializer.Serialize(Data);
response.Write(Callback + "(" + ser + ");");
}
}
示例5: FindAction
public ActionDescriptorCreator FindAction(ControllerContext controllerContext, string actionName)
{
if (controllerContext == null)
{
throw Error.ArgumentNull("controllerContext");
}
if (controllerContext.RouteData != null)
{
MethodInfo target = controllerContext.RouteData.GetTargetActionMethod();
if (target != null)
{
// short circuit the selection process if a direct route was matched.
return GetActionDescriptorDelegate(target);
}
}
List<MethodInfo> finalMethods = ActionMethodSelector.FindActionMethods(controllerContext, actionName, AliasedMethods, NonAliasedMethods);
switch (finalMethods.Count)
{
case 0:
return null;
case 1:
MethodInfo entryMethod = finalMethods[0];
return GetActionDescriptorDelegate(entryMethod);
default:
throw CreateAmbiguousActionMatchException(finalMethods, actionName);
}
}
示例6: QueueableViewAsPdf
public QueueableViewAsPdf(ControllerContext context, string viewName)
{
_context = context;
_viewName = viewName;
ViewHtmlString = GetHtmlFromView();
}
示例7: ResolveCulture
/// <summary>
/// Resolves the UI culture from different sources of filter context.
/// </summary>
/// <param name="filterContext">The filter context.</param>
public static CultureInfo ResolveCulture(ControllerContext filterContext)
{
if (filterContext == null)
{
return Globalizer.GetPossibleImplemented(null);
}
// Priority 1: from a lang parameter in the query string
string languageFromRoute = filterContext.RouteData.Values["lang"] != null
? filterContext.RouteData.Values["lang"].ToString()
: string.Empty;
if (!string.IsNullOrEmpty(languageFromRoute))
{
// Reuse UI Culture as it was set beforehand from Globalizer if CountryCulture fails
var foundCulture = Globalizer.GetCountryCulture(languageFromRoute) ?? Thread.CurrentThread.CurrentUICulture;
// TODO: Set in User preferences (if we will have one)
filterContext.HttpContext.Response.Cookies.Add(new HttpCookie(CultureCookieName) { Value = foundCulture.Name });
return foundCulture;
}
// Priority 2: Get culture from user's preferences/settings (if appropriate)
// Priority 3: Get culture from user's cookie
HttpCookie languageCookie = filterContext.HttpContext.Request.Cookies[CultureCookieName];
if (languageCookie != null)
{
string languageFromCookie = languageCookie.Value;
if (!string.IsNullOrEmpty(languageFromCookie))
{
CultureInfo cultureToSet;
try
{
cultureToSet = new CultureInfo(languageFromCookie);
}
catch
{
// Cookie is damaged or tampered with - setting same culture as already set for UI
cultureToSet = Thread.CurrentThread.CurrentUICulture;
}
return cultureToSet;
}
}
// Priority 4: Get culture from user's browser
string languageFromBrowser = CultureHelper.GetRequestLanguage(filterContext);
if (!string.IsNullOrEmpty(languageFromBrowser))
{
// Reuse UI Culture as it was set beforehand from Globalizer if CountryCulture fails
var foundCulture = Globalizer.GetCountryCulture(languageFromBrowser) ?? Thread.CurrentThread.CurrentUICulture;
// TODO: Set in User preferences (if we will have one)
filterContext.HttpContext.Response.Cookies.Add(new HttpCookie(CultureCookieName) { Value = foundCulture.Name });
return foundCulture;
}
// Just return same culture as UI culture, as it is set first.
return Thread.CurrentThread.CurrentUICulture;
}
示例8: CreateModel
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext, Type modelType)
{
string dataRuleTypeStr;
string dataruleTypeName = !string.IsNullOrWhiteSpace(bindingContext.ModelName) ? (bindingContext.ModelName + ".DataRuleType") : "DataRuleType";
dataRuleTypeStr = controllerContext.HttpContext.Request[dataruleTypeName];
if (string.IsNullOrEmpty(dataRuleTypeStr))
{
return null;
}
var dataRuleInt = Int32.Parse(dataRuleTypeStr);
DataRuleType dataRuleTypeEnum = (DataRuleType)dataRuleInt;
object model = null;
switch (dataRuleTypeEnum)
{
case DataRuleType.Folder:
model = new FolderDataRule();
break;
case DataRuleType.Schema:
model = new SchemaDataRule();
break;
case DataRuleType.Category:
model = new CategoryDataRule();
break;
}
bindingContext.ModelMetadata = ModelMetadataProviders.Current.GetMetadataForType(() => model, model.GetType());
return model;
}
示例9: Page_Context
public Page_Context(ControllerContext controllerContext, PageRequestContext pageRequestContext)
{
this.ControllerContext = controllerContext;
this.PageRequestContext = pageRequestContext;
Styles = new List<IHtmlString>();
Scripts = new List<IHtmlString>();
}
示例10: BindModel
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
object result = null;
var args = new BindModelEvent(controllerContext, bindingContext);
StrixPlatform.RaiseEvent(args);
if (args.IsBound)
{
result = args.Result;
}
else
{
result = base.BindModel(controllerContext, bindingContext);
if (bindingContext.ModelMetadata.Container == null && result != null && result.GetType().Equals(typeof(string)))
{
if (controllerContext.Controller.ValidateRequest)
{
int index;
if (IsDangerousString((string)result, out index))
{
throw new HttpRequestValidationException("Dangerous Input Detected");
}
}
result = GetSafeValue((string)result);
}
}
return result;
}
示例11: OnPropertyValidating
protected override bool OnPropertyValidating(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)
{
if (controllerContext == null)
{
throw new ArgumentNullException("controllerContext");
}
if (bindingContext == null)
{
throw new ArgumentNullException("bindingContext");
}
if (propertyDescriptor == null)
{
throw new ArgumentNullException("propertyDescriptor");
}
if (value is string && controllerContext.HttpContext.Request.ContentType.StartsWith(WebConstants.APPLICATIONJSON, StringComparison.OrdinalIgnoreCase))
{
if (controllerContext.Controller.ValidateRequest && bindingContext.PropertyMetadata[propertyDescriptor.Name].RequestValidationEnabled)
{
int index;
if (IsDangerousString(value.ToString(), out index))
{
throw new HttpRequestValidationException("Dangerous Input Detected");
}
}
}
return base.OnPropertyValidating(controllerContext, bindingContext, propertyDescriptor, value);
}
示例12: BindModel
public object BindModel(ControllerContext controllerContext,
ModelBindingContext bindingContext)
{
// get the cart from the session
Cart cart = null;
if (controllerContext.HttpContext.Session != null)
{
cart = (Cart)controllerContext.HttpContext.Session[sessionKey];
}
// create the cart if there wasn't one in the session data
if (cart == null)
{
cart = new Cart();
if (controllerContext.HttpContext.Session != null)
{
controllerContext.HttpContext.Session[sessionKey] = cart;
}
}
// return silly cart
return cart;
}
示例13: Index
//
// GET: /Test/
public ActionResult Index()
{
StringWriter sw = new StringWriter();
IFileSystem files = N2.Context.Current.Resolve<IFileSystem>();
List<ContentRegistration> expressions = new List<ContentRegistration>();
foreach (var file in files.GetFiles("~/Dinamico/Themes/Default/Views/ContentPages/").Where(f => f.Name.EndsWith(".cshtml")))
{
var cctx = new ControllerContext(ControllerContext.HttpContext, new RouteData(), new ContentPagesController());
cctx.RouteData.Values.Add("controller", "DynamicPages");
var v = ViewEngines.Engines.FindView(cctx, file.VirtualPath, null);
if (v.View == null)
sw.Write(string.Join(", ", v.SearchedLocations.ToArray()));
else
{
var temp = new ContentPage();
cctx.RequestContext.RouteData.ApplyCurrentPath(new N2.Web.PathData(temp));
var vdd = new ViewDataDictionary { Model = temp };
var re = new ContentRegistration(new DefinitionMap().GetOrCreateDefinition(typeof(ContentPage)).Clone());
N2.Web.Mvc.Html.RegistrationExtensions.SetRegistrationExpression(cctx.HttpContext, re);
v.View.Render(new ViewContext(cctx, v.View, vdd, new TempDataDictionary(), sw), sw);
expressions.Add(re);
}
}
return View(expressions);
}
示例14: PrepareControllerContext
/// <summary>
/// Prepares the controller context.
/// </summary>
/// <returns>The controller context.</returns>
public static ControllerContext PrepareControllerContext()
{
var requestContext = PrepareRequestContext();
var controllerBase = MockRepository.GenerateStub<ControllerBase>();
var controllerContext = new ControllerContext(requestContext, controllerBase);
return controllerContext;
}
示例15: ExecuteResult
public override void ExecuteResult(ControllerContext context)
{
if (context == null)
{
throw new ArgumentNullException("context");
}
if ((this.JsonRequestBehavior == System.Web.Mvc.JsonRequestBehavior.DenyGet)
&& string.Equals(context.HttpContext.Request.HttpMethod, "GET", StringComparison.OrdinalIgnoreCase))
{
throw new InvalidOperationException();
}
HttpResponseBase response = context.HttpContext.Response;
if (!string.IsNullOrEmpty(this.ContentType))
{
response.ContentType = this.ContentType;
}
else
{
response.ContentType = "application/json";
}
if (this.ContentEncoding != null)
{
response.ContentEncoding = this.ContentEncoding;
}
if (this.Data != null)
{
//IsoDateTimeConverter converter = new IsoDateTimeConverter();
//converter.DateTimeFormat = "yyyy-MM-dd HH:mm:ss";
response.Write(JsonConvert.SerializeObject(this.Data, Newtonsoft.Json.Formatting.Indented, Settings));
}
}