TransportBindingElement.GetProperty(T) Method (System.ServiceModel.Channels)

Switch View :
ScriptFree
.NET Framework Class Library
TransportBindingElement.GetProperty<T> Method

Gets a property from the specified BindingContext.

Namespace:  System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)
Syntax

Visual Basic
Public Overrides Function GetProperty(Of T As Class) ( _
	context As BindingContext _
) As T
C#
public override T GetProperty<T>(
	BindingContext context
)
where T : class

Visual C++
public:
generic<typename T>
where T : ref class
virtual T GetProperty(
	BindingContext^ context
) override
F#
abstract GetProperty : 
        context:BindingContext -> 'T  when 'T : not struct
override GetProperty : 
        context:BindingContext -> 'T  when 'T : not struct

Type Parameters

T

The property to get.

Return Value

Type: T
The property from the specified BindingContext.
Remarks

This method receives a binding context as an input parameter, which represents the stack of binding elements. This method gets the specified object directly, delegates the inquiry to the next lower binding element in the stack, or a combination of the two. It can modify the context if it delegates the inquiry. Each binding element in the stack can repeat this process, if it has been delegated to, until the bottom of the stack is reached. The object returned is usually a collection of properties.

If the type of T is ChannelProtectionRequirements, XmlDictionaryReaderQuotas, or MessageVersion then an instance of this class is returned. If the type of T matches the type of an instance in BindingParameters, that instance is returned.

This method is implemented by binding elements as well as by the run-time objects such as IChannelFactory, IChannelListener, and IChannel.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference