@@ -105,7 +105,6 @@ private HtmlConverter() {
105
105
/// the PDF as an
106
106
/// <see cref="System.IO.Stream"/>
107
107
/// </param>
108
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
109
108
public static void ConvertToPdf ( String html , Stream pdfStream ) {
110
109
ConvertToPdf ( html , pdfStream , null ) ;
111
110
}
@@ -132,7 +131,6 @@ public static void ConvertToPdf(String html, Stream pdfStream) {
132
131
/// <see cref="ConverterProperties"/>
133
132
/// instance
134
133
/// </param>
135
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
136
134
public static void ConvertToPdf ( String html , Stream pdfStream , ConverterProperties converterProperties ) {
137
135
ConvertToPdf ( html , new PdfWriter ( pdfStream ) , converterProperties ) ;
138
136
}
@@ -154,7 +152,6 @@ public static void ConvertToPdf(String html, Stream pdfStream, ConverterProperti
154
152
/// <see cref="iText.Kernel.Pdf.PdfWriter"/>
155
153
/// instance
156
154
/// </param>
157
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
158
155
public static void ConvertToPdf ( String html , PdfWriter pdfWriter ) {
159
156
ConvertToPdf ( html , pdfWriter , null ) ;
160
157
}
@@ -183,7 +180,6 @@ public static void ConvertToPdf(String html, PdfWriter pdfWriter) {
183
180
/// <see cref="ConverterProperties"/>
184
181
/// instance
185
182
/// </param>
186
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
187
183
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
188
184
public static void ConvertToPdf ( String html , PdfWriter pdfWriter , ConverterProperties converterProperties ) {
189
185
ConvertToPdf ( html , new PdfDocument ( pdfWriter , new DocumentProperties ( ) . SetEventCountingMetaInfo ( new HtmlMetaInfo ( ) ) ) , converterProperties ) ;
@@ -213,7 +209,6 @@ public static void ConvertToPdf(String html, PdfWriter pdfWriter, ConverterPrope
213
209
/// <see cref="ConverterProperties"/>
214
210
/// instance
215
211
/// </param>
216
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
217
212
public static void ConvertToPdf ( String html , PdfDocument pdfDocument , ConverterProperties converterProperties
218
213
) {
219
214
Document document = ConvertToDocument ( html , pdfDocument , converterProperties ) ;
@@ -474,7 +469,6 @@ public static void ConvertToPdf(Stream htmlStream, PdfDocument pdfDocument, Conv
474
469
/// <see cref="iText.Layout.Document"/>
475
470
/// instance
476
471
/// </returns>
477
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
478
472
public static Document ConvertToDocument ( String html , PdfWriter pdfWriter ) {
479
473
return ConvertToDocument ( html , pdfWriter , null ) ;
480
474
}
@@ -536,7 +530,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfWriter pdfWriter)
536
530
/// <see cref="iText.Layout.Document"/>
537
531
/// instance
538
532
/// </returns>
539
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
540
533
[ MethodImpl ( MethodImplOptions . NoInlining ) ]
541
534
public static Document ConvertToDocument ( String html , PdfWriter pdfWriter , ConverterProperties converterProperties
542
535
) {
@@ -606,7 +599,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfWriter pdfWriter,
606
599
/// <see cref="iText.Layout.Document"/>
607
600
/// instance
608
601
/// </returns>
609
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
610
602
public static Document ConvertToDocument ( String html , PdfDocument pdfDocument , ConverterProperties converterProperties
611
603
) {
612
604
@@ -782,7 +774,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfDocument pdfDocum
782
774
/// <see cref="System.String"/>
783
775
/// </param>
784
776
/// <returns>a list of iText building blocks</returns>
785
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
786
777
public static IList < IElement > ConvertToElements ( String html ) {
787
778
return ConvertToElements ( html , null ) ;
788
779
}
@@ -830,7 +821,6 @@ public static IList<IElement> ConvertToElements(Stream htmlStream) {
830
821
/// instance
831
822
/// </param>
832
823
/// <returns>a list of iText building blocks</returns>
833
- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
834
824
public static IList < IElement > ConvertToElements ( String html , ConverterProperties converterProperties ) {
835
825
836
826
try
0 commit comments