30 references to XComment
CustomEncryptorSample (1)
CustomXmlEncryptor.cs (1)
27new XComment(" This key is not encrypted. "),
Microsoft.AspNetCore.DataProtection (10)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (1)
47? (object)new XComment(" AES-GCM includes a 128-bit authentication tag, no extra validation algorithm required. ")
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (1)
62new XComment(" Algorithms provided by Windows CNG, using CBC-mode encryption with HMAC validation "),
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (1)
54new XComment(" Algorithms provided by Windows CNG, using Galois/Counter Mode encryption and validation "),
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (1)
53new XComment(" Algorithms provided by specified SymmetricAlgorithm and KeyedHashAlgorithm "),
AuthenticatedEncryption\ConfigurationModel\SecretExtensions.cs (1)
38new XComment(" Warning: the key below is in an unencrypted form. "),
KeyManagement\XmlKeyManager.cs (1)
390new XComment(" All keys created before the revocation date are revoked. "),
XmlEncryption\DpapiNGXmlEncryptor.cs (2)
86new XComment(" This key is encrypted with Windows DPAPI-NG. "), 87new XComment(" Rule: " + protectionDescriptorRuleString + " "),
XmlEncryption\DpapiXmlEncryptor.cs (1)
83new XComment(" This key is encrypted with Windows DPAPI. "),
XmlEncryption\NullXmlEncryptor.cs (1)
57new XComment(" This key is not encrypted. "),
Microsoft.CodeAnalysis.CSharp (4)
Compiler\DocumentationCommentCompiler.IncludeElementExpander.cs (4)
247XComment failureComment = new XComment(commentMessage); 289return new XNode[] { new XComment(commentMessage), includeElement.Copy(copyAttributeAnnotations: false) }; 370return new XNode[] { new XComment(commentMessage) }; 412return new XNode[] { new XComment(commentMessage) };
Microsoft.CodeAnalysis.VisualBasic (9)
Compilation\DocumentationComments\DocumentationCommentCompiler.Includes.vb (9)
427Return New XNode() {New XComment(commentMessage), container} 454Return New XNode() {New XComment(commentMessage)} 475Return New XNode() {New XComment(commentMessage)} 484Return New XNode() {New XComment(commentMessage)} 490Return New XNode() {New XComment(commentMessage)} 504Return New XNode() {New XComment(commentMessage)} 515Return New XNode() {New XComment(commentMessage)} 535Return New XNode() {New XComment(commentMessage)} 539Return New XNode() {New XComment(commentMessage)}
System.Private.Xml.Linq (6)
System\Xml\Linq\XContainer.cs (4)
935_currentContainer.AddNodeSkipNotify(new XComment(r.Value)); 991_currentContainer.AddNodeSkipNotify(new XComment(await r.GetValueAsync().ConfigureAwait(false))); 1089newNode = new XComment(r.Value); 1205newNode = new XComment(await r.GetValueAsync().ConfigureAwait(false));
System\Xml\Linq\XNode.cs (1)
490ret = new XComment(reader.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
81AddNode(new XComment(text!));