e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
27 lines
791 B
C#
27 lines
791 B
C#
//------------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Configuration
|
|
{
|
|
using System.Configuration;
|
|
|
|
public sealed partial class SynchronousReceiveElement : BehaviorExtensionElement
|
|
{
|
|
public SynchronousReceiveElement()
|
|
{
|
|
}
|
|
|
|
protected internal override object CreateBehavior()
|
|
{
|
|
return new System.ServiceModel.Description.SynchronousReceiveBehavior();
|
|
}
|
|
|
|
public override Type BehaviorType
|
|
{
|
|
get { return typeof(System.ServiceModel.Description.SynchronousReceiveBehavior); }
|
|
}
|
|
}
|
|
}
|
|
|