// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Enum: SeekOrigin
**
**
** Purpose: Enum describing locations in a stream you could
** seek relative to.
**
** Date: February 18, 2000
**
===========================================================*/
using System;
namespace System.IO {
// Provides seek reference points. To seek to the end of a stream,
// call stream.Seek(0, SeekOrigin.End).
//|
public enum SeekOrigin
{
// These constants match Native's FILE_BEGIN, FILE_CURRENT, and FILE_END
//|
Begin = 0,
//|
Current = 1,
//|
End = 2,
}
}