Pipeline.Actor Property

Gets or sets the SOAP actor.

Namespace: Microsoft.Web.Services2
Assembly: Microsoft.Web.Services2 (in microsoft.web.services2.dll)

Usage

'Usage
Dim pipeline1 As Pipeline

Dim returnValue As Uri
returnValue = pipeline1.Actor

Dim sampleValue As Uri
pipeline1.Actor = sampleValue

Syntax

'Declaration
Public Property Actor() As Uri
public Uri Actor {get; set;}
public: property Uri^ Actor{
    Uri^ get();
    Void set(Uri^);
}
public Uri get_Actor();
public void set_Actor(Uri);
public function get Actor() : Uri;
public function set Actor(Uri);

Property Value

A System.Uri that represents the SOAP actor. The default is Microsoft.Web.Services2.Addressing.WSAddressing.AnonymousRole.

Remarks

Specifies a URI that is used to dispatch messages for destinations that are not registered in the SoapReceivers collection. Registering a SoapReceiver with Add using this value will cause any messages that would have not been dispatched to be delivered to the new receiver.

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 Longhorn, and Windows 2000

Target Platforms

Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, Pocket PC, Windows CE, Smart Phone

See Also

Reference

Pipeline Class
Microsoft.Web.Services2 Namespace

Other Resources

Pipeline Members