共用方式為


MergePullSubscription.SecureInternetPassword 屬性

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

命名空間:  Microsoft.SqlServer.Replication
組件:  Microsoft.SqlServer.Rmo (在 Microsoft.SqlServer.Rmo.dll 中)

語法

'宣告
Public Property SecureInternetPassword As SecureString 
    Get 
    Set
'用途
Dim instance As MergePullSubscription 
Dim value As SecureString 

value = instance.SecureInternetPassword

instance.SecureInternetPassword = value
public SecureString SecureInternetPassword { get; set; }
public:
property SecureString^ SecureInternetPassword {
    SecureString^ get ();
    void set (SecureString^ value);
}
member SecureInternetPassword : SecureString with get, set
function get SecureInternetPassword () : SecureString 
function set SecureInternetPassword (value : SecureString)

屬性值

型別:System.Security.SecureString
A SecureString value.

備註

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 合併式複寫的 Web 同步處理.

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.

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

請參閱

參考

MergePullSubscription 類別

Microsoft.SqlServer.Replication 命名空間

其他資源

如何:為合併式複寫設定 Web 同步處理 (RMO 程式設計)