@@ -105,7 +105,6 @@ private HtmlConverter() {
105105 /// the PDF as an
106106 /// <see cref="System.IO.Stream"/>
107107 /// </param>
108- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
109108 public static void ConvertToPdf ( String html , Stream pdfStream ) {
110109 ConvertToPdf ( html , pdfStream , null ) ;
111110 }
@@ -132,7 +131,6 @@ public static void ConvertToPdf(String html, Stream pdfStream) {
132131 /// <see cref="ConverterProperties"/>
133132 /// instance
134133 /// </param>
135- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
136134 public static void ConvertToPdf ( String html , Stream pdfStream , ConverterProperties converterProperties ) {
137135 ConvertToPdf ( html , new PdfWriter ( pdfStream ) , converterProperties ) ;
138136 }
@@ -154,7 +152,6 @@ public static void ConvertToPdf(String html, Stream pdfStream, ConverterProperti
154152 /// <see cref="iText.Kernel.Pdf.PdfWriter"/>
155153 /// instance
156154 /// </param>
157- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
158155 public static void ConvertToPdf ( String html , PdfWriter pdfWriter ) {
159156 ConvertToPdf ( html , pdfWriter , null ) ;
160157 }
@@ -183,7 +180,6 @@ public static void ConvertToPdf(String html, PdfWriter pdfWriter) {
183180 /// <see cref="ConverterProperties"/>
184181 /// instance
185182 /// </param>
186- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
187183 [ MethodImpl ( MethodImplOptions . NoInlining ) ]
188184 public static void ConvertToPdf ( String html , PdfWriter pdfWriter , ConverterProperties converterProperties ) {
189185 ConvertToPdf ( html , new PdfDocument ( pdfWriter , new DocumentProperties ( ) . SetEventCountingMetaInfo ( new HtmlMetaInfo ( ) ) ) , converterProperties ) ;
@@ -213,7 +209,6 @@ public static void ConvertToPdf(String html, PdfWriter pdfWriter, ConverterPrope
213209 /// <see cref="ConverterProperties"/>
214210 /// instance
215211 /// </param>
216- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
217212 public static void ConvertToPdf ( String html , PdfDocument pdfDocument , ConverterProperties converterProperties
218213 ) {
219214 Document document = ConvertToDocument ( html , pdfDocument , converterProperties ) ;
@@ -474,7 +469,6 @@ public static void ConvertToPdf(Stream htmlStream, PdfDocument pdfDocument, Conv
474469 /// <see cref="iText.Layout.Document"/>
475470 /// instance
476471 /// </returns>
477- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
478472 public static Document ConvertToDocument ( String html , PdfWriter pdfWriter ) {
479473 return ConvertToDocument ( html , pdfWriter , null ) ;
480474 }
@@ -536,7 +530,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfWriter pdfWriter)
536530 /// <see cref="iText.Layout.Document"/>
537531 /// instance
538532 /// </returns>
539- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
540533 [ MethodImpl ( MethodImplOptions . NoInlining ) ]
541534 public static Document ConvertToDocument ( String html , PdfWriter pdfWriter , ConverterProperties converterProperties
542535 ) {
@@ -606,7 +599,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfWriter pdfWriter,
606599 /// <see cref="iText.Layout.Document"/>
607600 /// instance
608601 /// </returns>
609- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
610602 public static Document ConvertToDocument ( String html , PdfDocument pdfDocument , ConverterProperties converterProperties
611603 ) {
612604
@@ -782,7 +774,6 @@ public static Document ConvertToDocument(Stream htmlStream, PdfDocument pdfDocum
782774 /// <see cref="System.String"/>
783775 /// </param>
784776 /// <returns>a list of iText building blocks</returns>
785- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
786777 public static IList < IElement > ConvertToElements ( String html ) {
787778 return ConvertToElements ( html , null ) ;
788779 }
@@ -830,7 +821,6 @@ public static IList<IElement> ConvertToElements(Stream htmlStream) {
830821 /// instance
831822 /// </param>
832823 /// <returns>a list of iText building blocks</returns>
833- /// <exception cref="System.IO.IOException">Signals that an I/O exception has occurred.</exception>
834824 public static IList < IElement > ConvertToElements ( String html , ConverterProperties converterProperties ) {
835825
836826 try
0 commit comments