Share via


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)
Not applicable.

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 Compact Edition Books Online.

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

Platforms

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

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

.NET Compact Framework

Supported in: 2.0, 1.0

See Also

Reference

SqlCeReplication Class
SqlCeReplication Members
System.Data.SqlServerCe Namespace