e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
//----------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Routing.Configuration
|
|
{
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime;
|
|
using System.ServiceModel.Configuration;
|
|
using System.Configuration;
|
|
|
|
public class SoapProcessingExtensionElement : BehaviorExtensionElement
|
|
{
|
|
[SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationPropertyAttributeRule, Justification = "this is not a configuration property")]
|
|
public override Type BehaviorType
|
|
{
|
|
get { return typeof(SoapProcessingBehavior); }
|
|
}
|
|
|
|
protected internal override object CreateBehavior()
|
|
{
|
|
SoapProcessingBehavior behavior = new SoapProcessingBehavior();
|
|
behavior.ProcessMessages = this.ProcessMessages;
|
|
return behavior;
|
|
}
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.ProcessMessages, DefaultValue = true, Options = ConfigurationPropertyOptions.None)]
|
|
public bool ProcessMessages
|
|
{
|
|
get
|
|
{
|
|
return (bool)this[ConfigurationStrings.ProcessMessages];
|
|
}
|
|
set
|
|
{
|
|
this[ConfigurationStrings.ProcessMessages] = value;
|
|
}
|
|
}
|
|
}
|
|
}
|