Skip to content

Commit

Permalink
Add missing docs for M.E.Configuration.Xml
Browse files Browse the repository at this point in the history
Contributes to: dotnet#43869
  • Loading branch information
maryamariyan committed Oct 18, 2022
1 parent e7ca4a8 commit 0e06167
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,11 @@ private static bool ContainsEncryptedData(XmlDocument document)
}

/// <summary>
/// Returns an XmlReader that decrypts data transparently.
/// Creates an <see cref="XmlReader"/> that decrypts data transparently.
/// </summary>
/// <param name="input">The input <see cref="Stream"/> to read the XML configuration data from.</param>
/// <param name="settings">The settings for the new <see cref="XmlReader"/> instance.</param>
/// <returns>An <see cref="XmlReader"/> that decrypts data transparently.</returns>
public XmlReader CreateDecryptingXmlReader(Stream input, XmlReaderSettings? settings)
{
// XML-based configurations aren't really all that big, so we can buffer
Expand Down

0 comments on commit 0e06167

Please sign in to comment.