Пример #1
0
 /// <inheritdoc />
 public void Visit(IdentifierDefinition definition, IntegerDefinitionType type) => AddName(definition);
Пример #2
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type) => Write(definition, type);
Пример #3
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, IntegerDefinitionType type)
 {
     Add(definition, "integer");
 }
Пример #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;
 }