Asynchronously deletes the given key. The type is provided here as well because the "real" saved key should
contain type information as well, so the data store will be able to store the same key for different types.
Asynchronously returns the stored value for the given key or null if not found.
This implementation of IDataStore will always return a completed task
with a result of null.
Asynchronously stores the given value for the given key (replacing any existing value).
This implementation of IDataStore does not store the value,
and will not return it in future calls to GetAsync<T>(string).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eNullDataStore\u003c/code\u003e class is a data storage implementation that does not store or retrieve any data, essentially acting as a placeholder.\u003c/p\u003e\n"],["\u003cp\u003eIt implements the \u003ccode\u003eIDataStore\u003c/code\u003e interface, providing methods like \u003ccode\u003eClearAsync\u003c/code\u003e, \u003ccode\u003eDeleteAsync\u003c/code\u003e, \u003ccode\u003eGetAsync\u003c/code\u003e, and \u003ccode\u003eStoreAsync\u003c/code\u003e, but these methods do not perform actual data storage operations.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eGetAsync\u003c/code\u003e method will always return a completed task with a \u003ccode\u003enull\u003c/code\u003e result, regardless of the provided key.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eStoreAsync\u003c/code\u003e method will complete immediately without storing the given value, and subsequent calls to \u003ccode\u003eGetAsync\u003c/code\u003e will not retrieve the stored data.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eNullDataStore\u003c/code\u003e class inherits from \u003ccode\u003eobject\u003c/code\u003e and provides inherited methods for comparing objects, and getting the type or hashcode.\u003c/p\u003e\n"]]],[],null,[]]