Arango.Client.ACollection.ShardKeys C# (CSharp) Method

ShardKeys() public method

Determines which document attributes are used to specify the target shard for documents in cluster environment. Default value: ["_key"].
public ShardKeys ( List value ) : ACollection
value List
return ACollection
        public ACollection ShardKeys(List<string> value)
        {
            _parameters.List(ParameterName.ShardKeys, value);

            return this;
        }