BlobReader.ReadBytes 메서드

정의

오버로드

ReadBytes(Int32, Byte[], Int32)

현재 위치에서 시작하는 바이트를 읽고 지정된 오프셋에서 시작하는 지정된 버퍼에 씁니다.

ReadBytes(Int32)

현재 위치에서 시작하는 바이트를 읽습니다.

ReadBytes(Int32, Byte[], Int32)

Source:
BlobReader.cs
Source:
BlobReader.cs
Source:
BlobReader.cs

현재 위치에서 시작하는 바이트를 읽고 지정된 오프셋에서 시작하는 지정된 버퍼에 씁니다.

public:
 void ReadBytes(int byteCount, cli::array <System::Byte> ^ buffer, int bufferOffset);
public void ReadBytes (int byteCount, byte[] buffer, int bufferOffset);
member this.ReadBytes : int * byte[] * int -> unit
Public Sub ReadBytes (byteCount As Integer, buffer As Byte(), bufferOffset As Integer)

매개 변수

byteCount
Int32

읽을 바이트 수입니다.

buffer
Byte[]

바이트 읽기가 기록될 대상 버퍼입니다.

bufferOffset
Int32

바이트 읽기가 기록될 대상 버퍼의 오프셋입니다.

예외

byteCount 바이트를 사용할 수 없습니다.

적용 대상

ReadBytes(Int32)

Source:
BlobReader.cs
Source:
BlobReader.cs
Source:
BlobReader.cs

현재 위치에서 시작하는 바이트를 읽습니다.

public:
 cli::array <System::Byte> ^ ReadBytes(int byteCount);
public byte[] ReadBytes (int byteCount);
member this.ReadBytes : int -> byte[]
Public Function ReadBytes (byteCount As Integer) As Byte()

매개 변수

byteCount
Int32

읽을 바이트 수입니다.

반환

Byte[]

바이트 배열입니다.

예외

byteCount 바이트를 사용할 수 없습니다.

적용 대상