OxfordDictionaryApiDotNet 1.0.2

dotnet add package OxfordDictionaryApiDotNet --version 1.0.2
NuGet\Install-Package OxfordDictionaryApiDotNet -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OxfordDictionaryApiDotNet" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OxfordDictionaryApiDotNet --version 1.0.2
#r "nuget: OxfordDictionaryApiDotNet, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OxfordDictionaryApiDotNet as a Cake Addin
#addin nuget:?package=OxfordDictionaryApiDotNet&version=1.0.2

// Install OxfordDictionaryApiDotNet as a Cake Tool
#tool nuget:?package=OxfordDictionaryApiDotNet&version=1.0.2

OxfordDictionariesDotNet

An unofficial wrapper for the Oxford Languages API

It only takes a few lines of code to retrieve a definition:

  1. First, obtain your App Key and App Token from https://developer.oxforddictionaries.com/.
  2. Install the library using the Nuget Package Manager.
  3. Initialise the main client:
var config = new OxfordDictionaryClientConfig
  {
    AppKey = "yourAppKey",
    AppToken = "yourAppToken"
  };

var client = new OxfordDictionaryClient(config);
  1. Use the Entries client to fetch information about a word:
var entry = await client.EntriesClient.FindEntryAsync("entanglement");
  1. There are many things a word can return, but you can always use a helper method for convenience:
var definition = entry.FindFirstDefinition();

Understanding the Oxford Dictionaries API

Please note that this is not a straightforward, one-size-fits-all dictionary. A single entry can provide a wealth of data, which may initially seem confusing. While I have tried to provide some guidance in my XML comments, for a more in-depth understanding of how the Oxford Dictionaries API works, I recommend visiting their official documentation: https://developer.oxforddictionaries.com/documentation.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 243 11/13/2023

Support nullability