コード例 #1
0
 public static bool IsRequired(this JsonProperty jsonProperty)
 {
     if (!jsonProperty.HasAttribute <RequiredAttribute>())
     {
         return(jsonProperty.get_Required() == 2);
     }
     return(true);
 }