다음을 통해 공유


MemoryStream.Seek 메서드

현재 스트림 내의 위치를 지정된 값으로 설정합니다.

네임스페이스: System.IO
어셈블리: mscorlib(mscorlib.dll)

구문

‘선언
Public Overrides Function Seek ( _
    offset As Long, _
    loc As SeekOrigin _
) As Long
‘사용 방법
Dim instance As MemoryStream
Dim offset As Long
Dim loc As SeekOrigin
Dim returnValue As Long

returnValue = instance.Seek(offset, loc)
public override long Seek (
    long offset,
    SeekOrigin loc
)
public:
virtual long long Seek (
    long long offset, 
    SeekOrigin loc
) override
public long Seek (
    long offset, 
    SeekOrigin loc
)
public override function Seek (
    offset : long, 
    loc : SeekOrigin
) : long

매개 변수

  • offset
    스트림 내의 새 위치입니다. 이 위치는 loc 매개 변수와 관련되며 양수와 음수 모두 가능합니다.
  • loc
    검색 참조 지점 역할을 하는 SeekOrigin 형식의 값입니다.

반환 값

초기 참조 지점과 오프셋을 조합해서 계산한, 스트림 내의 새 위치입니다.

예외

예외 형식 조건

IOException

스트림의 시작 전에 검색하려고 한 경우

ArgumentOutOfRangeException

offset는 MaxValue보다 큽니다.

ArgumentException

잘못된 SeekOrigin이 있는 경우

ObjectDisposedException

현재 스트림 인스턴스가 닫혀 있는 경우

설명

파일을 만들고 파일에 텍스트를 쓰는 방법에 대한 예제를 보려면 방법: 파일에 텍스트 쓰기를 참조하십시오. 파일에서 텍스트를 읽는 방법에 대한 예제를 보려면 방법: 파일의 텍스트 읽기를 참조하십시오. 이진 파일을 읽거나 쓰는 방법에 대한 예제를 보려면 방법: 새로 만든 데이터 파일 읽기 및 쓰기를 참조하십시오.

이 메서드는 Seek를 재정의합니다.

스트림의 길이를 초과하는 위치까지 검색할 수 있습니다.

예제

이 코드 예제는 MemoryStream 클래스에 대해 제공되는 보다 큰 예제의 일부입니다.

' Set the stream position to the beginning of the stream.
memStream.Seek(0, SeekOrigin.Begin)
// Set the position to the beginning of the stream.
memStream.Seek(0, SeekOrigin.Begin);
// Set the stream position to the beginning of the stream.
memStream->Seek( 0, SeekOrigin::Begin );
// Set the position to the beginning of the stream.
memStream.Seek(0, SeekOrigin.Begin);

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

MemoryStream 클래스
MemoryStream 멤버
System.IO 네임스페이스

기타 리소스

파일 및 스트림 I/O
방법: 파일의 텍스트 읽기
방법: 파일에 텍스트 쓰기