11 lines
285 B
C#
11 lines
285 B
C#
|
// <copyright>
|
|||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
namespace System.ServiceModel.Channels
|
|||
|
{
|
|||
|
internal interface ITransportCompressionSupport
|
|||
|
{
|
|||
|
bool IsCompressionFormatSupported(CompressionFormat compressionFormat);
|
|||
|
}
|
|||
|
}
|