File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ public void OnlyExposedApiIsPublic()
9898 "UglyToad.PdfPig.CrossReference.TrailerDictionary" ,
9999 "UglyToad.PdfPig.Exceptions.PdfDocumentEncryptedException" ,
100100 "UglyToad.PdfPig.Filters.BaseFilterProvider" ,
101+ "UglyToad.PdfPig.Filters.DecodeParameterResolver" ,
101102 "UglyToad.PdfPig.Filters.DefaultFilterProvider" ,
102103 "UglyToad.PdfPig.Filters.IFilter" ,
103104 "UglyToad.PdfPig.Filters.IFilterProvider" ,
Original file line number Diff line number Diff line change 55 using Tokens ;
66 using UglyToad . PdfPig . Util ;
77
8- internal static class DecodeParameterResolver
9- {
8+ /// <summary>
9+ /// Decode parameter resolver.
10+ /// </summary>
11+ public static class DecodeParameterResolver
12+ {
13+ /// <summary>
14+ /// Get the filter parameters from a stream dictionary.
15+ /// </summary>
16+ /// <param name="streamDictionary">The stream dictionary.</param>
17+ /// <param name="index">If the filter element is an <see cref="ArrayToken"/>, the index in the array to take the dictionary from.</param>
18+ /// <exception cref="ArgumentNullException"></exception>
19+ /// <exception cref="ArgumentOutOfRangeException"></exception>
1020 public static DictionaryToken GetFilterParameters ( DictionaryToken streamDictionary , int index )
1121 {
1222 if ( streamDictionary is null )
You can’t perform that action at this time.
0 commit comments