e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Configuration
|
|
{
|
|
using System.Configuration;
|
|
|
|
public sealed partial class RemoveBehaviorElement : BehaviorExtensionElement
|
|
{
|
|
public RemoveBehaviorElement() { }
|
|
|
|
[ConfigurationProperty(ConfigurationStrings.Name, Options = ConfigurationPropertyOptions.IsRequired)]
|
|
[StringValidator(MinLength = 1)]
|
|
public string Name
|
|
{
|
|
get { return (string)base[ConfigurationStrings.Name]; }
|
|
set { base[ConfigurationStrings.Name] = value; }
|
|
}
|
|
|
|
public override void CopyFrom(ServiceModelExtensionElement from)
|
|
{
|
|
base.CopyFrom(from);
|
|
|
|
RemoveBehaviorElement source = (RemoveBehaviorElement) from;
|
|
#pragma warning suppress 56506 //[....]; base.CopyFrom() checks for 'from' being null
|
|
this.Name = source.Name;
|
|
}
|
|
|
|
protected internal override object CreateBehavior()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public override Type BehaviorType
|
|
{
|
|
get { return null; }
|
|
}
|
|
}
|
|
}
|