C# Class Framework.Mvc.Controllers.FrameworkController

Provides controller basic functionality.
Inheritance: Framework.Core.Controllers.BaseController
Datei anzeigen Open project: coreframework/Core-Framework

Protected Methods

Method Description
Translate ( String key ) : String

Gets global resource for key specified.

Translate ( String key, IEnumerable scope ) : String

Gets global resource for key and scope specified.

Translate ( String key, String scope ) : String

Gets global resource for key and scope specified.

Method Details

Translate() protected method

Gets global resource for key specified.
protected Translate ( String key ) : String
key String The resource key.
return String

Translate() protected method

Gets global resource for key and scope specified.
protected Translate ( String key, IEnumerable scope ) : String
key String The resource key.
scope IEnumerable The resource scope.
return String

Translate() protected method

Gets global resource for key and scope specified.
protected Translate ( String key, String scope ) : String
key String The resource key.
scope String The resource scope.
return String