Exemplo n.º 1
0
 /// <inheritdoc />
 public void Visit(IdentifierDefinition definition, StringDefinitionType type) => AddName(definition);
Exemplo n.º 2
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, StringDefinitionType type) => Write(definition, type);
Exemplo n.º 3
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, StringDefinitionType type)
 {
     Add(definition, "string");
 }
Exemplo n.º 4
0
 /// <inheritdoc />
 public void Visit(IDefinition definition, StringDefinitionType type)
 {
     SetMarshaller(definition);
 }
 /// <inheritdoc />
 public void Visit(IDefinition definition, StringDefinitionType type)
 {
     UseSimpleMarshaller <string>(definition);
 }
 /// <inheritdoc />
 public void Visit(TDefinition definition, StringDefinitionType type)
 {
     SetParser(definition, (name, x) => new IdentifierValueDtoString(name, x.Value));
 }
 /// <inheritdoc />
 public void Visit(IdentifierDefinition definition, StringDefinitionType type)
 {
     Writers[definition.SystemName] = WriteString;
 }