2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / JavaScriptResult.cs
blob4ee833eb265d60596d0ad57671de095bc57fa234
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
14 using System;
16 public class JavaScriptResult : ActionResult {
18 public string Script {
19 get;
20 set;
23 public override void ExecuteResult(ControllerContext context) {
24 if (context == null) {
25 throw new ArgumentNullException("context");
28 HttpResponseBase response = context.HttpContext.Response;
29 response.ContentType = "application/x-javascript";
31 if (Script != null) {
32 response.Write(Script);