TransportBindingElement.GetProperty<T> Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Gets a property from the specified BindingContext.

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

Syntax

'Declaration
Public Overrides Function GetProperty(Of T As Class) ( _
    context As BindingContext _
) As T
public override T GetProperty<T>(
    BindingContext context
)
where T : class

Type Parameters

  • T
    The property to get.

Return Value

Type: T
The property from the specified BindingContext.

Exceptions

Exception Condition
ArgumentNullException

context cannot be nulla null reference (Nothing in Visual Basic).

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 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 and IChannel.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.