SqlCeReplication.HostName Property

Gets or sets the host name used for the device when connecting to the Publisher.

Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)

Syntax

'Declaration
Public Property HostName As String
'Usage
Dim instance As SqlCeReplication
Dim value As String

value = instance.HostName

instance.HostName = value
public string HostName { get; set; 
public:
property String^ HostName {
    String^ get ();
    void set (String^ value);
/** @property */
public String get_HostName ()

/** @property */
public void set_HostName (String value)
public function get HostName () : String

public function set HostName (value : String)

Property Value

The host name for the device. The default is no host name.

Remarks

The HostName property is optional. Use this property to set a value for HOST_NAME() in a dynamic filter. For example, if you create a dynamic filter on a merge replication article, you can use HOST_NAME() to filter the data that is replicated. For example, if you specify "LName = HOST_NAME()" for the filter, and you set the HostName property to "Jones" before calling Synchronize, only rows that have "Jones" in the LName column will be present in the subscription. For more information, see "Adding a Filter to an Article" in SQL Server Mobile Books Online.

Your application must call the ReinitializeSubscription method if it changes the value of the HostName property after the subscription is created.

.NET Framework Security

  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see .

Platforms

Windows CE, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows XP Professional x64 Edition, Windows XP SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Compact Framework

Supported in: 2.0, 1.0

See Also

Reference

SqlCeReplication Class
SqlCeReplication Members
System.Data.SqlServerCe Namespace