AddAFUnitOfMeasureClass.Description Property
- Last UpdatedDec 15, 2025
- 2 minute read
Description for the AF Unit of Measure Class to add
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 3.1.1.0 (3.1.1.466)
Syntax
[ParameterAttribute(Position = 3, Mandatory = false, ValueFromPipeline = false, HelpMessage = "Unit of Measure Class Description")] [ValidateNotNullOrEmptyAttribute] public string Description { get; set; }
<ParameterAttribute(Position := 3, Mandatory := false, ValueFromPipeline := false, HelpMessage := "Unit of Measure Class Description")> <ValidateNotNullOrEmptyAttribute> Public Property Description As String Get Set Dim instance As AddAFUnitOfMeasureClass Dim value As String value = instance.Description instance.Description = value
public: [ParameterAttribute(Position = 3, Mandatory = false, ValueFromPipeline = false, HelpMessage = L"Unit of Measure Class Description")] [ValidateNotNullOrEmptyAttribute] property String^ Description { String^ get (); void set (String^ value); }
[<ParameterAttribute(Position = 3, Mandatory = false, ValueFromPipeline = false, HelpMessage = "Unit of Measure Class Description")>] [<ValidateNotNullOrEmptyAttribute>] member Description : string with get, set