| 11 | } |
| 12 | |
| 13 | internal struct PngImageMarker |
| 14 | { |
| 15 | public const int MARKER_10 = 10; // 0x0A |
| 16 | public const int MARKER_13 = 13; // 0x0D |
| 17 | public const int MARKER_26 = 26; // 0x1A |
| 18 | public const int MARKER_71 = 71; // 0x47 |
| 19 | public const int MARKER_78 = 78; // 0x4E |
| 20 | public const int MARKER_80 = 80; // 0x50 |
| 21 | public const int MARKER_137 = 137; // 0x89 |
| 22 | } |
| 23 | |
| 24 | public static readonly Encoding[] SupportedEncodings = new[] |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected