Bearbeiten

ConnectionsZone.SendText Property

Definition

Gets or sets the text shown in the section of the connection user interface (UI) that precedes the named provider that will send data to a consumer.

public:
 virtual property System::String ^ SendText { System::String ^ get(); void set(System::String ^ value); };
public virtual string SendText { get; set; }
member this.SendText : string with get, set
Public Overridable Property SendText As String

Property Value

A string that prefaces the named provider in the connection. The default text is a culture-specific string supplied by the .NET Framework.

Remarks

The SendText property takes effect in a specific connection scenario. When a user clicks the connect verb on a provider control, the ConnectionsZone control displays a view that enables users to establish a connection to a consumer. In the part of the UI that instructs users to choose a consumer connection point, there is some text that precedes the named provider that will participate in the connection. This text that precedes the provider is the text in the SendText property. By default, the text value is Send.

You can set the value of this property declaratively within the opening tag of the <asp:connectionszone> element, by adding an attribute named SendText and assigning it a value. You can also set the property value programmatically.

Applies to

See also