BinaryUnitInfo.LongTebi Property

Gets or sets the full version of the tebi prefix.

Definition

Namespace: Ookii
Assembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
C#
public string LongTebi { get; set; }

Property Value

String
The full prefix. The default value is "tebi".

Remarks

See the format string documentation for the BinarySize.ToString(String, IFormatProvider) method for when this prefix will be used.

When parsing, a string containing this prefix will always be interpreted as powers of two. Long units are only allowed when parsing if the BinarySizeOptions.AllowLongUnits or BinarySizeOptions.AllowLongUnitsOnly flag is used.

Exceptions

ArgumentNullException The property is being set to null.
InvalidOperationException The property is being set and the BinaryUnitInfo object is read-only.

See Also