We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bacefd4 commit 0a59f7aCopy full SHA for 0a59f7a
src/EmberLibConsumer.net/Lawo.EmberPlusSharp/Model/IParameter.cs
@@ -29,6 +29,8 @@ public interface IParameter : IElementWithSchemas
29
/// <summary>Gets <b>access</b>.</summary>
30
ParameterAccess Access { get; }
31
32
+ bool IsWriteable { get; }
33
+
34
/// <summary>Gets <b>format</b>.</summary>
35
string Format { get; }
36
src/EmberLibConsumer.net/Lawo.EmberPlusSharp/Model/ParameterBase`2.cs
@@ -30,6 +30,9 @@ public ParameterAccess Access
private set { this.SetValue(ref this.access, value); }
}
+ /// <inheritdoc/>
+ public bool IsWriteable => this.access == ParameterAccess.ReadWrite;
/// <inheritdoc/>
37
public string Format
38
{
0 commit comments