blob: 34dd47c6bd551c7b52316bdecd82e5112f40ec6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace System.Web.WebPages
{
/// <summary>
/// The current BrowserOverrideStore is used to get and set the user agent of a request.
/// For an example see CookieBasedBrowserOverrideStore.
/// </summary>
public abstract class BrowserOverrideStore
{
public abstract string GetOverriddenUserAgent(HttpContextBase httpContext);
public abstract void SetOverriddenUserAgent(HttpContextBase httpContext, string userAgent);
}
}
|