Skip to content

Commit

Permalink
Fix typo tutorial.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ilserd committed Jul 11, 2023
1 parent 08bd069 commit 51f8886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ a seconda dei contenuti del file:
using var stream = new FileStream("IT02182030391_31.xml.p7m", FileMode.Open, FileAccess.Read);
var fattura = FatturaBase.CreateInstanceFromXml(stream);
Console.WriteLine(fattura.GetFormatoTrasmissione())
Console.WriteLine(fattura.GetFormatoTrasmissione());
// "FSM10"
```

`CreateInstanceFromXml` supporta sia file XML puri (*.xml*) che firmati digitalment (*.p7m*), eventualmente anche
`CreateInstanceFromXml` supporta sia file XML puri (*.xml*) che firmati digitalmente (*.p7m*), eventualmente anche
codificati Base64. Questa comodità ha un costo, ovvero un leggero impatto sulle prestazioni in quanto è necessaria
una pre-scasione dello stream per determinarne il formato e la tipologia di fattura.

Expand Down

0 comments on commit 51f8886

Please sign in to comment.