Esempio n. 1
0
 /// <inheritdoc />
 public void Visit(IdentifierDefinition definition, IntegerDefinitionType type) => AddName(definition);
Esempio n. 2
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type) => Write(definition, type);
Esempio n. 3
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type)
 {
     Add(definition, "integer");
 }
Esempio n. 4
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type)
 {
     SetMarshaller <long>(definition, long.TryParse);
 }
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type)
 {
     UseSimpleMarshaller <long>(definition);
 }
 /// <inheritdoc />
 public void Visit(TDefinition definition, IntegerDefinitionType type)
 {
     SetParser(definition, (name, x) => new IdentifierValueDtoInt64(name, (long)x));
 }
 /// <inheritdoc />
 public void Visit(IdentifierDefinition definition, IntegerDefinitionType type)
 {
     Writers[definition.SystemName] = WriteInteger;
 }