add missing doc comments

This commit is contained in:
Eliot Jones
2018-01-10 20:31:38 +00:00
parent b2b5646208
commit be98b1f8e4
3 changed files with 15 additions and 4 deletions

View File

@@ -32,6 +32,9 @@
[NotNull]
internal Pages Pages { get; }
/// <summary>
/// The metadata associated with this document.
/// </summary>
[NotNull]
public DocumentInformation Information { get; }
@@ -89,6 +92,10 @@
return Pages.GetPage(pageNumber);
}
/// <inheritdoc />
/// <summary>
/// Dispose the <see cref="T:UglyToad.PdfPig.PdfDocument" /> and close any unmanaged resources.
/// </summary>
public void Dispose()
{
try