Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When my C# app requests the Planner Task info from from tasks list of Planner Plan it receives collection of task objects (PlannerTask class).
Each object has
Assignments
properties of typePlannerAssignments
. According to documentation this is collection ofPlannerAssignment
object stored inAdditionalData
collection.But in reality the

PlannerAssignments.AdditionalData
keeps collection ofUntypedObject
:How to get list of
PlannerAssignment
notUntypedObject
so as to correctly read assignment details?Beta Was this translation helpful? Give feedback.
All reactions