|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Diagnostics.Contracts;
using System.ServiceModel.Channels;
namespace System.ServiceModel
{
public class ActionNotSupportedException : CommunicationException
{
public ActionNotSupportedException() { }
public ActionNotSupportedException(string message) : base(message) { }
public ActionNotSupportedException(string message, Exception innerException) : base(message, innerException) { }
internal Message ProvideFault(MessageVersion messageVersion)
{
Contract.Assert(messageVersion.Addressing != AddressingVersion.None);
FaultCode code = FaultCode.CreateSenderFaultCode(AddressingStrings.ActionNotSupported, messageVersion.Addressing.Namespace);
string reason = this.Message;
return System.ServiceModel.Channels.Message.CreateMessage(
messageVersion, code, reason, messageVersion.Addressing.FaultAction);
}
}
}
|