コード例 #1
0
 protected static void WriteAttributeExtensions(XmlWriter writer, ServiceDocument document, string version)
 {
     if (document == null)
     {
         throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("document");
     }
     document.WriteAttributeExtensions(writer, version);
 }
コード例 #2
0
 protected static void WriteAttributeExtensions(XmlWriter writer, ServiceDocument document, string version)
 {
     if (document == null)
     {
         throw new ArgumentNullException(nameof(document));
     }
     document.WriteAttributeExtensions(writer, version);
 }
コード例 #3
0
 protected static void WriteAttributeExtensions(XmlWriter writer, ServiceDocument document, string version)
 {
     document.WriteAttributeExtensions(writer, version);
 }