Files
linux-packaging-mono/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Activation/IAspNetMessageProperty.cs

15 lines
459 B
C#
Raw Normal View History

//----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
namespace System.ServiceModel.Activation
{
interface IAspNetMessageProperty
{
Uri OriginalRequestUri { get; }
IDisposable ApplyIntegrationContext();
IDisposable Impersonate();
void Close();
}
}