13 public object?
List {
get;
internal set; }
18 public object?
Cancel {
get;
internal set; }
31 public static bool TryParse(Dictionary<string, object> Generic,
36 if (Generic.TryGetValue(
"list", out
object? Obj))
39 if (Generic.TryGetValue(
"cancel", out Obj))
42 if (Generic.TryGetValue(
"requests", out Obj) &&
43 Obj is Dictionary<string, object>
Requests &&
46 Result.Requests = RequestsParsed;
Tasks capabilities structure
TasksRequestsCapabilities? Requests
Specifies which request types can be augmented with tasks.
object? List
Whether this client supports tasks/list.
object? Cancel
Whether this client supports tasks/cancel.
static bool TryParse(Dictionary< string, object > Generic, out TasksCapabilities Typed)
Tries to parse a generic structure into a typed structure.
Tasks Requests capabilities structure
static bool TryParse(Dictionary< string, object > Generic, out TasksRequestsCapabilities Typed)
Tries to parse a generic structure into a typed structure.