Class RequestContext
Request context properties
public sealed class RequestContext : AbstractContext<RequestContext>, IDataContainer, ISimpleDataContainer, IContext, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, ICloneThreadItem
- Inheritance
-
objectRequestContext
- Implements
- Inherited Members
- Extension Methods
Properties
CurrentDomain
Returns current URL domain, without trailing slashes.
public static string CurrentDomain { get; }
Property Value
- string
CurrentScheme
Returns the current request URL scheme.
public static string CurrentScheme { get; }
Property Value
- string
CurrentStatus
Returns current request URL rewriting status.
public static RequestStatusEnum CurrentStatus { get; set; }
Property Value
FullDomain
Returns current URL domain with port if exist.
public static string FullDomain { get; }
Property Value
- string
IsUserAuthenticated
Returns true, if the user is authenticated
public static bool IsUserAuthenticated { get; }
Property Value
- bool
RawURL
Current request RawUrl.
public static string RawURL { get; }
Property Value
- string
URL
Gets information about URL of current request.
public static Uri URL { get; }
Property Value
- Uri
URLReferrer
Returns URL referrer or empty string if HttPContext is not initialized.
public static string URLReferrer { get; }
Property Value
- string
UserAgent
Returns user agent or empty string if HttPContext is not initialized.
public static string UserAgent { get; }
Property Value
- string
UserHostAddress
Gets or sets user host address. Returns empty string if HttpContext is not initialized and other value is not set.
public static string UserHostAddress { get; set; }
Property Value
- string
UserName
Gets user name or empty string if HttpContext is not initialized. The user name is in the exact format in which the user is authenticated (may not be safe name).
public static string UserName { get; }
Property Value
- string
Methods
ClearCachedUrlValues()
Clears the cached values related to URL of the request
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(29, 2)]
public static void ClearCachedUrlValues()
CloneForNewThread()
Clones the object for new thread
public override object CloneForNewThread()
Returns
- object