TransportBindingElement.GetProperty<T>(BindingContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a property from the specified BindingContext.
public:
generic <typename T>
where T : class override T GetProperty(System::ServiceModel::Channels::BindingContext ^ context);
public override T GetProperty<T> (System.ServiceModel.Channels.BindingContext context) where T : class;
override this.GetProperty : System.ServiceModel.Channels.BindingContext -> 'T (requires 'T : null)
Public Overrides Function GetProperty(Of T As Class) (context As BindingContext) As T
Type Parameters
- T
The property to get.
Parameters
- context
- BindingContext
Returns
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.