Search Results for

    Show / Hide Table of Contents

    Class ReplicationServerConfigurationElement

    Defines a replication server in configuration file.

    Inheritance
    System.Object
    System.Configuration.ConfigurationElement
    ReplicationServerConfigurationElement
    Namespace: MySql.Data.MySqlClient
    Assembly: MySql.Data.dll
    Version: 9.3.0
    Syntax
    public sealed class ReplicationServerConfigurationElement : ConfigurationElement

    Properties

    ConnectionString

    Gets or sets the connection string associated to this replication server.

    Declaration
    [ConfigurationProperty("connectionstring", IsRequired = true)]
    public string ConnectionString { get; set; }
    Property Value
    Type Description
    System.String

    IsMaster

    Gets or sets whether the replication server is configured as source.

    Declaration
    [ConfigurationProperty("IsMaster", IsRequired = false, DefaultValue = false)]
    [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
    [ConfigurationProperty("IsSource", IsRequired = false, DefaultValue = false)]
    public bool IsSource { get; set; }
    Property Value
    Type Description
    System.Boolean

    Name

    Gets or sets the name of the replication server configuration.

    Declaration
    [ConfigurationProperty("name", IsRequired = true)]
    public string Name { get; set; }
    Property Value
    Type Description
    System.String
    In This Article
    Back to top Copyright © 2021, 2025, Oracle and/or its affiliates.