Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.ServiceModel / System / ServiceModel / Configuration / IdentityElement.cs
index 50ed2a799993ac00e0cac8836112c1bd409521d6..e7ec1f86419ca2e55164cd344835e1c27787b769 100644 (file)
@@ -111,7 +111,7 @@ namespace System.ServiceModel.Configuration
             else if (identity is X509CertificateEndpointIdentity)
             {
                 X509Certificate2Collection certs = ((X509CertificateEndpointIdentity)identity).Certificates;
-#pragma warning suppress 56506 //[....]; this.Certificate can never be null (underlying configuration system guarantees)
+#pragma warning suppress 56506 //Microsoft; this.Certificate can never be null (underlying configuration system guarantees)
                 this.Certificate.EncodedValue = Convert.ToBase64String(certs.Export(certs.Count == 1 ? X509ContentType.SerializedCert : X509ContentType.SerializedStore));
             }
         }