mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
ci new namespace file scope unsupported
This commit is contained in:
parent
e2246a88bb
commit
9c9c7c99ea
@ -1,34 +1,35 @@
|
|||||||
namespace UglyToad.PdfPig;
|
namespace UglyToad.PdfPig
|
||||||
|
|
||||||
using Logging;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// <see cref="ParsingOptions"/> but without being a public API/
|
|
||||||
/// </summary>
|
|
||||||
internal class InternalParsingOptions
|
|
||||||
{
|
{
|
||||||
public IReadOnlyList<string> Passwords { get; }
|
using Logging;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
public bool UseLenientParsing { get; }
|
/// <summary>
|
||||||
|
/// <see cref="ParsingOptions"/> but without being a public API/
|
||||||
public bool ClipPaths { get; }
|
/// </summary>
|
||||||
|
internal class InternalParsingOptions
|
||||||
public bool SkipMissingFonts { get; }
|
|
||||||
|
|
||||||
public ILog Logger { get; }
|
|
||||||
|
|
||||||
public InternalParsingOptions(
|
|
||||||
IReadOnlyList<string> passwords,
|
|
||||||
bool useLenientParsing,
|
|
||||||
bool clipPaths,
|
|
||||||
bool skipMissingFonts,
|
|
||||||
ILog logger)
|
|
||||||
{
|
{
|
||||||
Passwords = passwords;
|
public IReadOnlyList<string> Passwords { get; }
|
||||||
UseLenientParsing = useLenientParsing;
|
|
||||||
ClipPaths = clipPaths;
|
public bool UseLenientParsing { get; }
|
||||||
SkipMissingFonts = skipMissingFonts;
|
|
||||||
Logger = logger;
|
public bool ClipPaths { get; }
|
||||||
|
|
||||||
|
public bool SkipMissingFonts { get; }
|
||||||
|
|
||||||
|
public ILog Logger { get; }
|
||||||
|
|
||||||
|
public InternalParsingOptions(
|
||||||
|
IReadOnlyList<string> passwords,
|
||||||
|
bool useLenientParsing,
|
||||||
|
bool clipPaths,
|
||||||
|
bool skipMissingFonts,
|
||||||
|
ILog logger)
|
||||||
|
{
|
||||||
|
Passwords = passwords;
|
||||||
|
UseLenientParsing = useLenientParsing;
|
||||||
|
ClipPaths = clipPaths;
|
||||||
|
SkipMissingFonts = skipMissingFonts;
|
||||||
|
Logger = logger;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user