SqlCeRemoteDataAccess.InternetPassword Property

Note: This namespace, class, or member is supported only in version 1.1 of the .NET Framework.

Specifies the Microsoft Internet Information Services (IIS) password used when connecting to the SQL Server CE Server Agent.

  [Visual Basic]
  Public Property InternetPassword As String
[C#]
public string InternetPassword {get; set;}
[C++]
public: __property String* get_InternetPassword();
public: __property void set_InternetPassword(String*);
[JScript]
public function get InternetPassword() : String;
public function set InternetPassword(String);

Property Value

The IIS password string used when connecting to the SQL Server CE Server Agent. The default is no password.

Remarks

The InternetPassword property is required if the SQL Server CE Server Agent is configured to use Basic authentication or Integrated Windows authentication. When Integrated Windows authentication is used, the InternetPassword is not passed across the network.

When using Basic authentication, you should configure IIS to use SSL or Private Communication Technology (PCT) encryption to safeguard user passwords. In the absence of SSL or PCT encryption, Basic authentication transmits passwords across the network in clear text form. This is unsafe; we strongly recommend that you always use SSL or PCT encryption to safeguard passwords when using Basic authentication.

Requirements

Platforms: .NET Compact Framework

.NET Framework Security:

See Also

SqlCeRemoteDataAccess Class | SqlCeRemoteDataAccess Members | System.Data.SqlServerCe Namespace

Syntax based on .NET Framework version 1.1.
Documentation version 1.1.1.

Send comments on this topic.

© Microsoft Corporation. All rights reserved.