Compartir a través de


MergePullSubscription.SecureInternetPassword Property

Sets the password (as a SecureString object) used when connecting to the Web server using HTTP Basic Authentication.

Espacio de nombres: Microsoft.SqlServer.Replication
Ensamblado: Microsoft.SqlServer.Rmo (in microsoft.sqlserver.rmo.dll)

Sintaxis

'Declaración
Public Property SecureInternetPassword As SecureString
public SecureString SecureInternetPassword { get; set; }
public:
property SecureString^ SecureInternetPassword {
    SecureString^ get ();
    void set (SecureString^ value);
}
/** @property */
public SecureString get_SecureInternetPassword ()

/** @property */
public void set_SecureInternetPassword (SecureString value)
public function get SecureInternetPassword () : SecureString

public function set SecureInternetPassword (value : SecureString)

Valor de propiedad

A SecureString value.

Notas

The SecureInternetPassword property provides additional security for the password while it is stored in memory and should be used instead of InternetPassword.

When possible, prompt users to enter security credentials at runtime. If you must store credentials, use the cryptographic services provided by the Microsoft Windows .NET Framework.

The password is never returned by SecureInternetPassword.

You should use BasicAuthentication with Web synchronization. For more information, see Sincronización Web para la réplica de mezcla.

The SecureInternetPassword property can only be set by members of the sysadmin fixed server role at the Subscriber or by members of the db_owner fixed database role on the subscription database.

Setting the SecureInternetPassword property is equivalent to executing sp_addmergepullsubscription_agent or sp_changemergepullsubscription.

The SecureInternetPassword property is availably only with instances of Microsoft SQL Server 2005.

This property is only used if the UseWebSynchronization property is true.

Seguridad para subprocesos

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

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

MergePullSubscription Class
MergePullSubscription Members
Microsoft.SqlServer.Replication Namespace

Otros recursos

How to: Configure Web Synchronization for Merge Replication (RMO Programming)