Dela via


DataConnectionDialog.DisplayConnectionString Property

Retrieves or sets unencrypted connection information for display on the Data Connection dialog box for the specified data provider.

Namespace:  Microsoft.VisualStudio.Data
Assembly:  Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)

Syntax

'Declaration
Public MustOverride Property DisplayConnectionString As String
'Usage
Dim instance As DataConnectionDialog 
Dim value As String 

value = instance.DisplayConnectionString

instance.DisplayConnectionString = value
public abstract string DisplayConnectionString { get; set; }
public:
virtual property String^ DisplayConnectionString {
    String^ get () abstract;
    void set (String^ value) abstract;
}
public abstract function get DisplayConnectionString () : String 
public abstract function set DisplayConnectionString (value : String)

Property Value

Type: System.String
Returns string representing unencrypted connection information for the connection dialog box.

Remarks

Normally a client sets this property to specify an initial configuration for the dialog box, and then retrieve it after the dialog box has closed to pick up the information entered by the user.

The display connection string is provided for purposes of display in the user interface (UI). No sensitive information, such as a password, is included in this string. A client may set the value of this property as a more complete connection string; however, this information will be stripped out and will not be returned by this property.

.NET Framework Security

See Also

Reference

DataConnectionDialog Class

DataConnectionDialog Members

Microsoft.VisualStudio.Data Namespace

EncryptedConnectionString