Files
linux-packaging-mono/external/aspnetwebstack/src/System.Web.WebPages/BrowserOverrideStore.cs

15 lines
593 B
C#
Raw Normal View History

// 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);
}
}