From b8653dde6f8019c3fe30d858e8f1242bc96adf22 Mon Sep 17 00:00:00 2001 From: Maryam Ariyan Date: Wed, 19 Oct 2022 09:54:15 -0400 Subject: [PATCH] Add missing docs for `M.E.Configuration.Xml` (#77188) --- .../src/XmlDocumentDecryptor.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs b/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs index ba8650882a2ff..2fe2ce2df91a0 100644 --- a/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs +++ b/src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlDocumentDecryptor.cs @@ -48,8 +48,11 @@ private static bool ContainsEncryptedData(XmlDocument document) } /// - /// Returns an XmlReader that decrypts data transparently. + /// Creates an that decrypts data transparently. /// + /// The input to read the XML configuration data from. + /// The settings for the new instance. + /// An that decrypts data transparently. public XmlReader CreateDecryptingXmlReader(Stream input, XmlReaderSettings? settings) { // XML-based configurations aren't really all that big, so we can buffer