DbConnectionStringBuilder.IsReadOnly Propriedade
Definição
Obtém um valor que indica se o DbConnectionStringBuilder é somente leitura.Gets a value that indicates whether the DbConnectionStringBuilder is read-only.
public:
property bool IsReadOnly { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsReadOnly { get; }
public bool IsReadOnly { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsReadOnly : bool
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Valor da propriedade
true se o DbConnectionStringBuilder for somente leitura; caso contrário, false.true if the DbConnectionStringBuilder is read-only; otherwise false. O padrão é false.The default is false.
Implementações
- Atributos
Comentários
Uma coleção somente leitura não permite adicionar, remover ou modificar elementos depois que a coleção é criada.A read-only collection does not allow adding, removing, or modifying elements after the collection is created.
Uma coleção somente leitura é apenas uma coleção com um wrapper que impede a modificação da coleção; Portanto, se forem feitas alterações na coleção subjacente, a coleção somente leitura refletirá essas alterações.A read-only collection is just a collection with a wrapper that prevents modifying the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.