Struct SqlConnectionStringEntry
Represents a single connection string entry.
public readonly record struct SqlConnectionStringEntry : IEquatable<SqlConnectionStringEntry>
- Implements
- Inherited Members
Constructors
SqlConnectionStringEntry(string, object, bool)
Represents a single connection string entry.
public SqlConnectionStringEntry(string Key, object Value, bool IsMutable)
Parameters
Key
stringKey of this entry.
Value
objectValue of this entry.
IsMutable
boolSpecifies whether or not this entry can be changed.
Properties
IsMutable
Specifies whether or not this entry can be changed.
public bool IsMutable { get; init; }
Property Value
Key
Key of this entry.
public string Key { get; init; }
Property Value
Value
Value of this entry.
public object Value { get; init; }