Arango.Client.ACollection.KeyGeneratorType C# (CSharp) Метод

KeyGeneratorType() публичный Метод

Determines the type of the key generator. Default value: Traditional.
public KeyGeneratorType ( AKeyGeneratorType value ) : ACollection
value AKeyGeneratorType
Результат ACollection
        public ACollection KeyGeneratorType(AKeyGeneratorType value)
        {
            // needs to be in string format - set enum format explicitely to override global setting
            _parameters.Enum(ParameterName.KeyOptionsType, value.ToString().ToLower(), EnumFormat.String);

            return this;
        }