Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
beyaz committed Oct 15, 2024
1 parent fafccf0 commit cbd6e84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ReactWithDotNet/UIDesigner/MetaDataHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ static bool IsElement(Type type)

static bool isNotValidForJson(Type parameterType)
{
if (parameterType.IsAnonymousType())
{
return true;
}
if (parameterType == typeof(object))
{
return true;
Expand Down

0 comments on commit cbd6e84

Please sign in to comment.