Click or drag to resize

InformationController Class

SOWI Web Foundation site information e.g. about version
Inheritance Hierarchy
SystemObject
  ControllerBase
    Controller
      SOWIWeb.Foundation.ControllersInformationController

Namespace:  SOWIWeb.Foundation.Controllers
Assembly:  SOWIWeb.Foundation (in SOWIWeb.Foundation.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
public class InformationController : Controller

The InformationController type exposes the following members.

Constructors
  NameDescription
Public methodInformationController
Initializes a new instance of the InformationController class
Top
Properties
  NameDescription
Public propertyActionInvoker
Gets the action invoker for the controller.
(Inherited from Controller.)
Public propertyAsyncManager
Provides asynchronous operations.
(Inherited from Controller.)
Protected propertyBinders
Gets or sets the binder.
(Inherited from Controller.)
Public propertyControllerContext
Gets or sets the controller context.
(Inherited from ControllerBase.)
Protected propertyDisableAsyncSupport
Disable asynchronous support to provide backward compatibility.
(Inherited from Controller.)
Public propertyHttpContext
Gets HTTP-specific information about an individual HTTP request.
(Inherited from Controller.)
Public propertyModelState
Gets the model state dictionary object that contains the state of the model and of model-binding validation.
(Inherited from Controller.)
Public propertyProfile
Gets the HTTP context profile.
(Inherited from Controller.)
Public propertyRequest
Gets the HttpRequestBase object for the current HTTP request.
(Inherited from Controller.)
Public propertyResponse
Gets the HttpResponseBase object for the current HTTP response.
(Inherited from Controller.)
Public propertyRouteData
Gets the route data for the current request.
(Inherited from Controller.)
Public propertyServer
Gets the HttpServerUtilityBase object that provides methods that are used during Web request processing.
(Inherited from Controller.)
Public propertySession
Gets the HttpSessionStateBase object for the current HTTP request.
(Inherited from Controller.)
Public propertyTempData
Gets or sets the dictionary for temporary data.
(Inherited from ControllerBase.)
Public propertyTempDataProvider
Gets the temporary-data provider object that is used to store data for the next request.
(Inherited from Controller.)
Public propertyUrl
Gets the URL helper object that is used to generate URLs by using routing.
(Inherited from Controller.)
Public propertyUser
Gets the user security information for the current HTTP request.
(Inherited from Controller.)
Public propertyValidateRequest
Gets or sets a value that indicates whether request validation is enabled for this request.
(Inherited from ControllerBase.)
Public propertyValueProvider
Gets or sets the value provider for the controller.
(Inherited from ControllerBase.)
Public propertyViewBag
Gets the dynamic view data dictionary.
(Inherited from ControllerBase.)
Public propertyViewData
Gets or sets the dictionary for view data.
(Inherited from ControllerBase.)
Public propertyViewEngineCollection
Gets the view engine collection.
(Inherited from Controller.)
Top
Methods
  NameDescription
Protected methodBeginExecute
Begins execution of the specified request context
(Inherited from Controller.)
Protected methodBeginExecuteCore
Begins to invoke the action in the current controller context.
(Inherited from Controller.)
Protected methodContent(String)
Creates a content result object by using a string.
(Inherited from Controller.)
Protected methodContent(String, String)
Creates a content result object by using a string and the content type.
(Inherited from Controller.)
Protected methodContent(String, String, Encoding)
Creates a content result object by using a string, the content type, and content encoding.
(Inherited from Controller.)
Protected methodCreateActionInvoker
Creates an action invoker.
(Inherited from Controller.)
Protected methodCreateTempDataProvider
Creates a temporary data provider.
(Inherited from Controller.)
Public methodDispose
Releases all resources that are used by the current instance of the Controller class.
(Inherited from Controller.)
Protected methodDispose(Boolean)
Releases unmanaged resources and optionally releases managed resources.
(Inherited from Controller.)
Protected methodEndExecute
Ends the invocation of the action in the current controller context.
(Inherited from Controller.)
Protected methodEndExecuteCore
Ends the execute core.
(Inherited from Controller.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodExecute
Executes the specified request context.
(Inherited from ControllerBase.)
Protected methodExecuteCore
Invokes the action in the current controller context.
(Inherited from Controller.)
Protected methodFile(Byte, String)
Creates a FileContentResult object by using the file contents and file type.
(Inherited from Controller.)
Protected methodFile(Stream, String)
Creates a FileStreamResult object by using the Stream object and content type.
(Inherited from Controller.)
Protected methodFile(String, String)
Creates a FilePathResult object by using the file name and the content type.
(Inherited from Controller.)
Protected methodFile(Byte, String, String)
Creates a FileContentResult object by using the file contents, content type, and the destination file name.
(Inherited from Controller.)
Protected methodFile(Stream, String, String)
Creates a FileStreamResult object using the Stream object, the content type, and the target file name.
(Inherited from Controller.)
Protected methodFile(String, String, String)
Creates a FilePathResult object by using the file name, the content type, and the file download name.
(Inherited from Controller.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodHandleUnknownAction
Called when a request matches this controller, but no method with the specified action name is found in the controller.
(Inherited from Controller.)
Protected methodHttpNotFound
Returns an instance of the HttpNotFoundResult class.
(Inherited from Controller.)
Protected methodHttpNotFound(String)
Returns an instance of the HttpNotFoundResult class.
(Inherited from Controller.)
Public methodIndex
Information about assembly version
Protected methodInitialize
Initializes data that might not be available when the constructor is called.
(Inherited from Controller.)
Protected methodJavaScript
Creates a JavaScriptResult object.
(Inherited from Controller.)
Protected methodJson(Object)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON).
(Inherited from Controller.)
Protected methodJson(Object, String)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
(Inherited from Controller.)
Protected methodJson(Object, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior.
(Inherited from Controller.)
Protected methodJson(Object, String, Encoding)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format.
(Inherited from Controller.)
Protected methodJson(Object, String, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified content type and JSON request behavior.
(Inherited from Controller.)
Protected methodJson(Object, String, Encoding, JsonRequestBehavior)
Creates a JsonResult object that serializes the specified object to JavaScript Object Notation (JSON) format using the content type, content encoding, and the JSON request behavior.
(Inherited from Controller.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnActionExecuted
Called after the action method is invoked.
(Inherited from Controller.)
Protected methodOnActionExecuting
Called before the action method is invoked.
(Inherited from Controller.)
Protected methodOnAuthorization
Called when authorization occurs.
(Inherited from Controller.)
Protected methodOnException
Called when an unhandled exception occurs in the action.
(Inherited from Controller.)
Protected methodOnResultExecuted
Called after the action result that is returned by an action method is executed.
(Inherited from Controller.)
Protected methodOnResultExecuting
Called before the action result that is returned by an action method is executed.
(Inherited from Controller.)
Protected methodPartialView
Creates a PartialViewResult object that renders a partial view.
(Inherited from Controller.)
Protected methodPartialView(Object)
Creates a PartialViewResult object that renders a partial view, by using the specified model.
(Inherited from Controller.)
Protected methodPartialView(String)
Creates a PartialViewResult object that renders a partial view, by using the specified view name.
(Inherited from Controller.)
Protected methodPartialView(String, Object)
Creates a PartialViewResult object that renders a partial view, by using the specified view name and model.
(Inherited from Controller.)
Protected methodRedirect
Creates a RedirectResult object that redirects to the specified URL.
(Inherited from Controller.)
Protected methodRedirectPermanent
Returns an instance of the RedirectResult class with the Permanent property set to true.
(Inherited from Controller.)
Protected methodRedirectToAction(String)
Redirects to the specified action using the action name.
(Inherited from Controller.)
Protected methodRedirectToAction(String, Object)
Redirects to the specified action using the action name and route values.
(Inherited from Controller.)
Protected methodRedirectToAction(String, RouteValueDictionary)
Redirects to the specified action using the action name and route dictionary.
(Inherited from Controller.)
Protected methodRedirectToAction(String, String)
Redirects to the specified action using the action name and controller name.
(Inherited from Controller.)
Protected methodRedirectToAction(String, String, Object)
Redirects to the specified action using the action name, controller name, and route values.
(Inherited from Controller.)
Protected methodRedirectToAction(String, String, RouteValueDictionary)
Redirects to the specified action using the action name, controller name, and route dictionary.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String, Object)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String, RouteValueDictionary)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and route values.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String, String)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, and controller name.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String, String, Object)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
(Inherited from Controller.)
Protected methodRedirectToActionPermanent(String, String, RouteValueDictionary)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified action name, controller name, and route values.
(Inherited from Controller.)
Protected methodRedirectToRoute(Object)
Redirects to the specified route using the specified route values.
(Inherited from Controller.)
Protected methodRedirectToRoute(RouteValueDictionary)
Redirects to the specified route using the route dictionary.
(Inherited from Controller.)
Protected methodRedirectToRoute(String)
Redirects to the specified route using the route name.
(Inherited from Controller.)
Protected methodRedirectToRoute(String, Object)
Redirects to the specified route using the route name and route values.
(Inherited from Controller.)
Protected methodRedirectToRoute(String, RouteValueDictionary)
Redirects to the specified route using the route name and route dictionary.
(Inherited from Controller.)
Protected methodRedirectToRoutePermanent(Object)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route values.
(Inherited from Controller.)
Protected methodRedirectToRoutePermanent(RouteValueDictionary)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route values.
(Inherited from Controller.)
Protected methodRedirectToRoutePermanent(String)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name.
(Inherited from Controller.)
Protected methodRedirectToRoutePermanent(String, Object)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name and route values.
(Inherited from Controller.)
Protected methodRedirectToRoutePermanent(String, RouteValueDictionary)
Returns an instance of the RedirectResult class with the Permanent property set to true using the specified route name and route values.
(Inherited from Controller.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Protected methodTryUpdateModel``1(UMP)
Updates the specified model instance using values from the controller's current value provider.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String)
Updates the specified model instance using values from the controller's current value provider and a prefix.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String)
Updates the specified model instance using values from the controller's current value provider and included properties.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, IValueProvider)
Updates the specified model instance using values from the value provider.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, String)
Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, IValueProvider)
Updates the specified model instance using values from the value provider and a prefix.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, IValueProvider)
Updates the specified model instance using values from the value provider and a list of properties to include.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, String, String)
Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, String, IValueProvider)
Updates the specified model instance using values from the value provider, a prefix, and included properties.
(Inherited from Controller.)
Protected methodTryUpdateModel``1(UMP, String, String, String, IValueProvider)
Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude , and a list of properties to include.
(Inherited from Controller.)
Protected methodTryValidateModel(Object)
Validates the specified model instance.
(Inherited from Controller.)
Protected methodTryValidateModel(Object, String)
Validates the specified model instance using an HTML prefix.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP)
Updates the specified model instance using values from the controller's current value provider.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String)
Updates the specified model instance using values from the controller's current value provider and a prefix.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String)
Updates the specified model instance using values from the controller object's current value provider.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, IValueProvider)
Updates the specified model instance using values from the value provider.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, String)
Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, IValueProvider)
Updates the specified model instance using values from the value provider and a prefix.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, IValueProvider)
Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, String, String)
Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, String, IValueProvider)
Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.
(Inherited from Controller.)
Protected methodUpdateModel``1(UMP, String, String, String, IValueProvider)
Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude, and a list of properties to include.
(Inherited from Controller.)
Protected methodValidateModel(Object)
Validates the specified model instance.
(Inherited from Controller.)
Protected methodValidateModel(Object, String)
Validates the specified model instance using an HTML prefix.
(Inherited from Controller.)
Protected methodView
Creates a ViewResult object that renders a view to the response.
(Inherited from Controller.)
Protected methodView(Object)
Creates a ViewResult object by using the model that renders a view to the response.
(Inherited from Controller.)
Protected methodView(String)
Creates a ViewResult object by using the view name that renders a view.
(Inherited from Controller.)
Protected methodView(IView)
Creates a ViewResult object that renders the specified IView object.
(Inherited from Controller.)
Protected methodView(String, String)
Creates a ViewResult object using the view name and master-page name that renders a view to the response.
(Inherited from Controller.)
Protected methodView(String, Object)
Creates a ViewResult object by using the view name and model that renders a view to the response.
(Inherited from Controller.)
Protected methodView(IView, Object)
Creates a ViewResult object that renders the specified IView object.
(Inherited from Controller.)
Protected methodView(String, String, Object)
Creates a ViewResult object using the view name, master-page name, and model that renders a view.
(Inherited from Controller.)
Top
Extension Methods
  NameDescription
Public Extension MethodGetObjectToBytes
Convert an object to byte array
(Defined by Extensions.)
Public Extension MethodIsNumber
Check is value a number
(Defined by Convert.)
Public Extension MethodToHTMLDisplay(DataGrid, TempDataDictionary)Overloaded. (Defined by Extensions.)
Public Extension MethodCode exampleToHTMLDisplay(String, DataGridDataTypes, String, String, String, String, TempDataDictionary)Overloaded.
Gives HTML code for display.
(Defined by Extensions.)
Public Extension MethodToHTMLEditor(DataGrid, TempDataDictionary, String)Overloaded. (Defined by Extensions.)
Public Extension MethodToHTMLEditor(String, DataGridDataTypes, String, String, String, TempDataDictionary, Boolean, String, DataPlacements, String, String)Overloaded.
Gives HTML code for Input field
(Defined by Extensions.)
Public Extension MethodCode exampleToHTMLHidden(String)Overloaded.
Gives HTML code for hidden data
(Defined by Extensions.)
Public Extension MethodToHTMLHidden(DataGrid)Overloaded.
Gives HTML code for hidden data
(Defined by Extensions.)
Public Extension MethodXMLWrite
Gives XML string from data item
(Defined by Helper.)
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate methodSystem#Web#Mvc#Async#IAsyncController#BeginExecute (Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#Async#IAsyncController#EndExecute
Ends the execute task.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IController#Execute
Executes the specified request context.
(Inherited from ControllerBase.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IActionFilter#OnActionExecuted
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnActionExecuted(ActionExecutedContext) method.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IActionFilter#OnActionExecuting
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnActionExecuting(ActionExecutingContext) method.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IAuthorizationFilter#OnAuthorization
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnAuthorization(AuthorizationContext) method.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IExceptionFilter#OnException
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnException(ExceptionContext) method.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IResultFilter#OnResultExecuted
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnResultExecuted(ResultExecutedContext) method.
(Inherited from Controller.)
Explicit interface implementationPrivate methodSystem#Web#Mvc#IResultFilter#OnResultExecuting
This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the OnResultExecuting(ResultExecutingContext) method.
(Inherited from Controller.)
Top
See Also