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, acting as a placeholder or a "null" storage solution.\u003c/p\u003e\n"],["\u003cp\u003eIt implements the \u003ccode\u003eIDataStore\u003c/code\u003e interface but overrides its methods to either return \u003ccode\u003enull\u003c/code\u003e or complete a task without performing any actual storage operations.\u003c/p\u003e\n"],["\u003cp\u003eThe class offers methods like \u003ccode\u003eClearAsync\u003c/code\u003e, \u003ccode\u003eDeleteAsync\u003c/code\u003e, \u003ccode\u003eGetAsync\u003c/code\u003e, and \u003ccode\u003eStoreAsync\u003c/code\u003e, but all these actions do nothing, ensuring no data is persisted.\u003c/p\u003e\n"],["\u003cp\u003eIt inherits from \u003ccode\u003eobject\u003c/code\u003e and offers a standard constructor, along with various inherited members that perform object-related functions.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version of the API is 1.69.0 while this document pertains to version 1.60.0, the documentation also covers versions 1.68.0, 1.59.0, 1.55.0 and 1.50.0.\u003c/p\u003e\n"]]],[],null,[]]