BlobBuilder.WriteBytes 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
WriteBytes(Byte[], Int32, Int32) |
바이트 배열의 지정된 인덱스에서 시작하는 지정된 바이트 수를 작성기에 씁니다. |
WriteBytes(Byte*, Int32) |
버퍼에서 지정된 바이트 수를 작성기에 씁니다. |
WriteBytes(ImmutableArray<Byte>, Int32, Int32) |
변경할 수 없는 배열의 지정된 인덱스에서 시작하는 지정된 바이트 수를 작성기에 씁니다. |
WriteBytes(ImmutableArray<Byte>) |
변경할 수 없는 바이트 배열의 내용을 작성기에 씁니다. |
WriteBytes(Byte[]) |
바이트 배열의 내용을 작성기에 씁니다. |
WriteBytes(Byte, Int32) |
지정된 바이트 값의 발생 횟수를 작성기에 씁니다. |
WriteBytes(Byte[], Int32, Int32)
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
바이트 배열의 지정된 인덱스에서 시작하는 지정된 바이트 수를 작성기에 씁니다.
public:
void WriteBytes(cli::array <System::Byte> ^ buffer, int start, int byteCount);
public void WriteBytes (byte[] buffer, int start, int byteCount);
member this.WriteBytes : byte[] * int * int -> unit
Public Sub WriteBytes (buffer As Byte(), start As Integer, byteCount As Integer)
매개 변수
- buffer
- Byte[]
- start
- Int32
- byteCount
- Int32
쓸 바이트 수입니다.
예외
buffer
이(가) null
인 경우
start
및 byteCount
에 의해 지정된 범위가 buffer
의 경계를 벗어납니다.
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
WriteBytes(Byte*, Int32)
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
버퍼에서 지정된 바이트 수를 작성기에 씁니다.
public:
void WriteBytes(System::Byte* buffer, int byteCount);
public void WriteBytes (byte* buffer, int byteCount);
member this.WriteBytes : nativeptr<byte> * int -> unit
매개 변수
- buffer
- Byte*
- byteCount
- Int32
쓸 바이트 수입니다.
예외
buffer
이(가) null
인 경우
byteCount
가 음수입니다.
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
WriteBytes(ImmutableArray<Byte>, Int32, Int32)
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
변경할 수 없는 배열의 지정된 인덱스에서 시작하는 지정된 바이트 수를 작성기에 씁니다.
public:
void WriteBytes(System::Collections::Immutable::ImmutableArray<System::Byte> buffer, int start, int byteCount);
public void WriteBytes (System.Collections.Immutable.ImmutableArray<byte> buffer, int start, int byteCount);
member this.WriteBytes : System.Collections.Immutable.ImmutableArray<byte> * int * int -> unit
Public Sub WriteBytes (buffer As ImmutableArray(Of Byte), start As Integer, byteCount As Integer)
매개 변수
- buffer
- ImmutableArray<Byte>
- start
- Int32
- byteCount
- Int32
쓸 바이트 수입니다.
예외
buffer
이(가) null
인 경우
start
및 byteCount
에 의해 지정된 범위가 buffer
의 경계를 벗어납니다.
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
WriteBytes(ImmutableArray<Byte>)
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
변경할 수 없는 바이트 배열의 내용을 작성기에 씁니다.
public:
void WriteBytes(System::Collections::Immutable::ImmutableArray<System::Byte> buffer);
public void WriteBytes (System.Collections.Immutable.ImmutableArray<byte> buffer);
member this.WriteBytes : System.Collections.Immutable.ImmutableArray<byte> -> unit
Public Sub WriteBytes (buffer As ImmutableArray(Of Byte))
매개 변수
- buffer
- ImmutableArray<Byte>
쓸 배열입니다.
예외
buffer
이(가) null
인 경우
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
WriteBytes(Byte[])
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
바이트 배열의 내용을 작성기에 씁니다.
public:
void WriteBytes(cli::array <System::Byte> ^ buffer);
public void WriteBytes (byte[] buffer);
member this.WriteBytes : byte[] -> unit
Public Sub WriteBytes (buffer As Byte())
매개 변수
- buffer
- Byte[]
쓸 바이트 배열입니다.
예외
buffer
이(가) null
인 경우
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
WriteBytes(Byte, Int32)
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
- Source:
- BlobBuilder.cs
지정된 바이트 값의 발생 횟수를 작성기에 씁니다.
public:
void WriteBytes(System::Byte value, int byteCount);
public void WriteBytes (byte value, int byteCount);
member this.WriteBytes : byte * int -> unit
Public Sub WriteBytes (value As Byte, byteCount As Integer)
매개 변수
- value
- Byte
- byteCount
- Int32
기록할 value
의 발생 횟수입니다.
예외
byteCount
가 음수입니다.
작성기는 쓸 수 없습니다. 다른 작성기와 연결되어 있습니다.
적용 대상
.NET