OneWayBindingElement.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 properties from the binding stack, if present.
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
Type of the property.
Parameters
- context
- BindingContext
The BindingContext that provides context for the binding element.
Returns
A T
object from the binding stack, if present.
Remarks
This method receives a binding context as an input parameter, which represents the stack of binding elements.
Each binding element in the stack can handle the inquiry itself or delegate the inquiry, or a combination of the two. Each binding element can modify the context if it delegates the inquiry. However, a transport binding element handles the inquiry itself.
This method is implemented by binding elements as well as by the runtime objects, such as IChannelFactory, IChannelListener, and IChannel.