다음을 통해 공유


SqliteBlob.Write 메서드

정의

오버로드

Write(ReadOnlySpan<Byte>)

현재 스트림에 바이트 시퀀스를 쓰고 쓴 바이트 수만큼 이 스트림에서 현재 위치를 앞으로 이동합니다.

Write(Byte[], Int32, Int32)

현재 스트림에 바이트 시퀀스를 쓰고 쓴 바이트 수만큼 이 스트림에서 현재 위치를 앞으로 이동합니다.

Write(ReadOnlySpan<Byte>)

Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs

현재 스트림에 바이트 시퀀스를 쓰고 쓴 바이트 수만큼 이 스트림에서 현재 위치를 앞으로 이동합니다.

public virtual void Write (ReadOnlySpan<byte> buffer);
public override void Write (ReadOnlySpan<byte> buffer);
override this.Write : ReadOnlySpan<byte> -> unit
Public Overridable Sub Write (buffer As ReadOnlySpan(Of Byte))
Public Overrides Sub Write (buffer As ReadOnlySpan(Of Byte))

매개 변수

buffer
ReadOnlySpan<Byte>

메모리 영역입니다. 이 메서드는 이 영역의 내용을 현재의 스트림에 복사합니다.

적용 대상

Write(Byte[], Int32, Int32)

Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs
Source:
SqliteBlob.cs

현재 스트림에 바이트 시퀀스를 쓰고 쓴 바이트 수만큼 이 스트림에서 현재 위치를 앞으로 이동합니다.

public override void Write (byte[] buffer, int offset, int count);
override this.Write : byte[] * int * int -> unit
Public Overrides Sub Write (buffer As Byte(), offset As Integer, count As Integer)

매개 변수

buffer
Byte[]

바이트 배열입니다. 이 메서드는 버퍼의 카운트 바이트를 현재 스트림으로 복사합니다.

offset
Int32

현재 스트림에 바이트를 복사하기 시작하는 버퍼의 바이트 오프셋(0부터 시작)입니다.

count
Int32

현재 스트림에 쓸 바이트 수입니다.

적용 대상