6 writes to ResponseId
Microsoft.Extensions.AI.Abstractions (2)
Generated\361d1da7f942c932\JsonContext.SpeechToTextResponseUpdate.g.cs (1)
81Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.SpeechToTextResponseUpdate)obj).ResponseId = value!,
SpeechToText\SpeechToTextResponse.cs (1)
92ResponseId = ResponseId,
Microsoft.Extensions.AI.Abstractions.Tests (4)
Generated\361d1da7f942c932\TestJsonSerializerContext.SpeechToTextResponseUpdate.g.cs (1)
79Setter = static (obj, value) => ((global::Microsoft.Extensions.AI.SpeechToTextResponseUpdate)obj).ResponseId = value!,
SpeechToText\SpeechToTextResponseUpdateExtensionsTests.cs (1)
53new() { ResponseId = "someResponse", ModelId = "model123", StartTime = TimeSpan.FromSeconds(25), EndTime = TimeSpan.FromSeconds(35) },
SpeechToText\SpeechToTextResponseUpdateTests.cs (2)
48update.ResponseId = "comp123"; 88ResponseId = "id123",
11 references to ResponseId
Microsoft.Extensions.AI.Abstractions (4)
Generated\361d1da7f942c932\JsonContext.SpeechToTextResponseUpdate.g.cs (1)
80Getter = static obj => ((global::Microsoft.Extensions.AI.SpeechToTextResponseUpdate)obj).ResponseId,
SpeechToText\SpeechToTextResponseUpdate.cs (1)
21/// but all of those with a non-<see langword="null"/> value must have the same value (e.g. <see cref="SpeechToTextResponseUpdate.ResponseId"/>).
SpeechToText\SpeechToTextResponseUpdateExtensions.cs (2)
73if (update.ResponseId is not null) 75response.ResponseId = update.ResponseId;
Microsoft.Extensions.AI.Abstractions.Tests (7)
Generated\361d1da7f942c932\TestJsonSerializerContext.SpeechToTextResponseUpdate.g.cs (1)
78Getter = static obj => ((global::Microsoft.Extensions.AI.SpeechToTextResponseUpdate)obj).ResponseId,
SpeechToText\SpeechToTextResponseTests.cs (1)
229Assert.Equal("12345", update.ResponseId);
SpeechToText\SpeechToTextResponseUpdateTests.cs (5)
21Assert.Null(update.ResponseId); 49Assert.Equal("comp123", update.ResponseId); 103Assert.Equal(original.ResponseId, result.ResponseId); 140Assert.Equal("resp1", result.ResponseId);