SetFileOptions.MaxFileLength Property
- Last UpdatedDec 15, 2025
- 1 minute read
Maximum File Length to be permitted
Namespace: OSIsoft.PowerShell
Assembly: OSIsoft.PowerShell (in OSIsoft.PowerShell.dll) Version: 2.2.3.0 (2.2.3.952)
Syntax
[ParameterAttribute(Position = 1, Mandatory = true, HelpMessage = "Maximum File Length")] [ValidateNotNullOrEmptyAttribute] public int MaxFileLength { get; set; }
<ParameterAttribute(Position := 1, Mandatory := true, HelpMessage := "Maximum File Length")> <ValidateNotNullOrEmptyAttribute> Public Property MaxFileLength As Integer Get Set Dim instance As SetFileOptions Dim value As Integer value = instance.MaxFileLength instance.MaxFileLength = value
public: [ParameterAttribute(Position = 1, Mandatory = true, HelpMessage = L"Maximum File Length")] [ValidateNotNullOrEmptyAttribute] property int MaxFileLength { int get (); void set (int value); }
[<ParameterAttribute(Position = 1, Mandatory = true, HelpMessage = "Maximum File Length")>] [<ValidateNotNullOrEmptyAttribute>] member MaxFileLength : int with get, set