diff --git a/CSharp/Libraries/UniversalEditor.Core/IO/SeekOrigin.cs b/CSharp/Libraries/UniversalEditor.Core/IO/SeekOrigin.cs index 7d514fed..ec9e8da5 100644 --- a/CSharp/Libraries/UniversalEditor.Core/IO/SeekOrigin.cs +++ b/CSharp/Libraries/UniversalEditor.Core/IO/SeekOrigin.cs @@ -5,10 +5,23 @@ using System.Text; namespace UniversalEditor.IO { + /// + /// Provides various options for determining where seeking within a stream should start. + /// public enum SeekOrigin { + /// + /// Indicates that seeking should start from the beginning of a stream. + /// Begin = 0, + /// + /// Indicates that seeking should start from the current position within a stream. + /// Current = 1, + /// + /// Indicates that seeking should start from the end of a stream. This usually necessiates that the amount + /// be specified as a negative value. + /// End = 2 } }