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