Class ReplicationServerConfigurationElement
Defines a replication server in configuration file.
Inheritance
System.Object
ReplicationServerConfigurationElement
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data.dll
Version: 9.1.0
Syntax
public sealed class ReplicationServerConfigurationElement : ConfigurationElement
Properties
ConnectionString
Gets or sets the connection string associated to this replication server.
Declaration
public string ConnectionString { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsMaster
Gets or sets whether the replication server is configured as source.
Declaration
[Obsolete("This property is deprecated, please use IsSource instead.")]
public bool IsMaster { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsSource
Gets or sets whether the replication server is configured as source.
Declaration
public bool IsSource { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the name of the replication server configuration.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |