Newtonsoft.Json.Serialization.DefaultContractResolver.CreateArrayContract C# (CSharp) Метод

CreateArrayContract() защищенный Метод

Creates a JsonArrayContract for the given type.
protected CreateArrayContract ( Type objectType ) : JsonArrayContract
objectType System.Type Type of the object.
Результат JsonArrayContract
    protected virtual JsonArrayContract CreateArrayContract(Type objectType)
    {
      JsonArrayContract contract = new JsonArrayContract(objectType);
      InitializeContract(contract);

      return contract;
    }