Pipeline.GetInputBehavior Generic Method

Gets a custom interface for an incoming SOAP filter.

Namespace: Microsoft.Web.Services3
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Public Class SomeType1
End Class
Dim returnValue As SomeType1
Dim pipeline1 As Pipeline
returnValue = pipeline1.GetInputBehavior(Of SomeType1)()

Syntax

'Declaration
Public Function GetInputBehavior(Of T)() As T
public T GetInputBehavior<T>();
public:
generic<typename T>
T GetInputBehavior();
public T GetInputBehavior<T>();
JScript does not support Generics.

Return Value

A custom interface for an incoming SOAP filter.

Remarks

Use the GetInputBehavior method to obtain a custom interface for an incoming SOAP filter. For example, the SecureConversationClientSendSecurityFilter outgoing SOAP filter supports the ISecureConversationEvents interface that allows an application to subscribe to an event that is raised when a secure conversation is established by the soap filter.

The GetInputBehavior method calls the GetBehavior method on incoming SOAP filters and returns an instance of the custom interface from the first filter that does not return null.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

Pipeline Class
Pipeline Members
Microsoft.Web.Services3 Namespace