Newtonsoft.Json.Converters.ExpandoObjectConverter.CanConvert C# (CSharp) 메소드

CanConvert() 공개 메소드

Determines whether this instance can convert the specified object type.
public CanConvert ( Type objectType ) : bool
objectType System.Type Type of the object.
리턴 bool
        public override bool CanConvert(Type objectType)
        {
            return (objectType == typeof(ExpandoObject));
        }