From 388ea4aace8cc9657a31b3587099c24261a241a0 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Mon, 1 Dec 2014 13:59:00 -0500 Subject: [PATCH] Added comments --- .../Libraries/UniversalEditor.Core/IO/SeekOrigin.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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 } }