Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WindowsStreamSecurityBindingElement::GetProperty<T> Method (BindingContext^)

 

Gets a specified object from the BindingContext.

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

public:
generic<typename T>
where T : ref class
virtual T GetProperty(
	BindingContext^ context
) override

Return Value

Type: T

The specified object from the BindingContext or null if the object is not found.

Type Parameters

T

The object to get.

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 ISecurityCapabilities, then an instance of this class is returned with SupportsClientAuthentication,

SupportsClientWindowsIdentity, and SupportsServerAuthentication all set to true, and SupportedRequestProtectionLevel and SupportedResponseProtectionLevel set to the current value in this binding.

If the type of T is IdentityVerifier, then a default instance of this class is returned.

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

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Return to top
Show:
© 2017 Microsoft