Complete the following code to analyze a document and detect handwritten styles.
Uri fileUri = new Uri("<fileUri>");
AnalyzeDocumentOperation operation = await client.AnalyzeDocumentFromUriAsync(WaitUntil.Completed, {{slot1}}, fileUri);
AnalyzeResult result = operation.Value;
foreach (DocumentStyle style in result.Styles)
{
bool isHandwritten = style.IsHandwritten.HasValue && style.IsHandwritten == true;
if (isHandwritten && style.Confidence > {{slot2}})
{
Console.WriteLine($"Handwritten content found:");
foreach (DocumentSpan span in style.Spans)
{
// Handle each span
}
}
}Correct slot values