### Azure for .NET Developers - Introduction Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search This snippet highlights resources for .NET developers new to Azure. It points to an introduction to Azure and .NET, likely covering fundamental concepts and setup. ```.NET Azure for .NET developers * Introduction to Azure and .NET ``` -------------------------------- ### Azure .NET API Reference Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search This snippet indicates the availability of an API reference for Azure services when used with .NET. It suggests a comprehensive guide to the classes, methods, and properties available for .NET developers. ```.NET API reference * Overview ``` -------------------------------- ### Azure for .NET Developers - Key Services Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search This snippet focuses on essential Azure services that are particularly useful for .NET developers. It suggests a list or overview of these services will be provided. ```.NET Azure for .NET developers * Key Azure services for .NET developers ``` -------------------------------- ### Azure SDK for .NET - Latest Version Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search This section indicates the availability of the latest stable version of the Azure SDK for .NET. It also mentions a preview version, suggesting ongoing development and early access to new features. ```.NET Version Azure SDK for .NET (Latest) * Preview * Latest ``` -------------------------------- ### AI for .NET Developers Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search This section is dedicated to Artificial Intelligence (AI) resources specifically tailored for .NET developers. It likely links to libraries, SDKs, or tutorials for integrating AI capabilities into .NET applications. ```.NET AI for .NET ``` -------------------------------- ### .NET Azure AI Search Data Access (v11) Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search The `Azure.Search.Documents` library is the .NET client for Azure AI Search, recommended for new projects. It depends on `Azure.Core` and `System.Text.Json` for service configuration, authentication, and serialization. Ensure you use the correct namespace (`using Azure.Search.Documents;`) when implementing this library. ```.NET using Azure.Search.Documents; // Example usage: // var client = new SearchClient(new Uri("https://YOUR_SEARCH_SERVICE_NAME.search.windows.net"), new AzureKeyCredential("YOUR_API_KEY")); ``` -------------------------------- ### .NET Azure AI Search Data Access (v10 Legacy) Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search The `Microsoft.Azure.Search` libraries are for maintaining existing .NET solutions that use older versions of Azure AI Search. While supported, no new features are planned, only security hotfixes. Migration to v11 is recommended for new development. ```.NET // Example usage for v10: // var searchClient = new SearchIndexClient(new Uri("https://YOUR_SEARCH_SERVICE_NAME.search.windows.net"), new SearchCredentials("YOUR_API_KEY")); ``` -------------------------------- ### .NET Azure AI Search Resource Management Source: https://learn.microsoft.com/en-us/dotnet/api/?view=azure-dotnet/overview/azure/search The `Microsoft.Azure.Management.Search` library is used for provisioning and managing Azure AI Search resources. It relies on Azure Resource Manager for subscriber and tenant identification and typically requires Azure Active Directory authentication for its workflow. ```.NET // Example usage for resource management: // var searchManagementClient = new SearchManagementClient(new TokenCredentials(token), "YOUR_SUBSCRIPTION_ID"); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.