4 references to _hash
Microsoft.Extensions.AI.Abstractions (4)
Utilities\AIJsonUtilities.cs (4)
191
public void GetHashAndReset(Span<byte> bytes) =>
_hash
.GetHashAndReset(bytes);
194
public override void Write(byte[] buffer, int offset, int count) =>
_hash
.AppendData(buffer, offset, count);
195
public override void Write(ReadOnlySpan<byte> buffer) =>
_hash
.AppendData(buffer);
226
_hash
.Dispose();