You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
foreach(vardependentTypeinSerializationTarget.Prepare(context,type).Members.SelectMany( m =>ExtractElementTypes(context,configuration,m.Member.GetMemberValueType())))
483
+
// Search dependents recursively if the type is NOT enum.
484
+
if(!type.GetIsEnum())
490
485
{
491
-
yieldreturndependentType;
486
+
foreach(
487
+
vardependentTypein
488
+
SerializationTarget.Prepare(context,type)
489
+
.Members.SelectMany( m =>ExtractElementTypes(context,configuration,m.Member.GetMemberValueType()))
0 commit comments