Gets a property from the specified BindingContext.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Public Overrides Function GetProperty(Of T As Class) ( _ context As BindingContext _ ) As T
public override T GetProperty<T>( BindingContext context ) where T : class
public: generic<typename T> where T : ref class virtual T GetProperty( BindingContext^ context ) override
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.
Parameters
- context
- Type: System.ServiceModel.Channels.BindingContext
A BindingContext.
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.
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Portable Class Library
Supported in: Portable Class LibraryWindows 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.