diff --git a/Platform.Communication/Protocol/Gexf/Edge.cs b/Platform.Communication/Protocol/Gexf/Edge.cs index dee05ea..9a42d81 100644 --- a/Platform.Communication/Protocol/Gexf/Edge.cs +++ b/Platform.Communication/Protocol/Gexf/Edge.cs @@ -2,6 +2,8 @@ using System.Xml; using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Gexf { public class Edge diff --git a/Platform.Communication/Protocol/Gexf/Enums.cs b/Platform.Communication/Protocol/Gexf/Enums.cs index e178508..7b509d5 100644 --- a/Platform.Communication/Protocol/Gexf/Enums.cs +++ b/Platform.Communication/Protocol/Gexf/Enums.cs @@ -1,5 +1,7 @@ using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Gexf { public enum GraphMode diff --git a/Platform.Communication/Protocol/Gexf/Gexf.cs b/Platform.Communication/Protocol/Gexf/Gexf.cs index 317fb7b..f7b6269 100644 --- a/Platform.Communication/Protocol/Gexf/Gexf.cs +++ b/Platform.Communication/Protocol/Gexf/Gexf.cs @@ -2,6 +2,8 @@ using System.Xml; using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Gexf { [XmlRoot(ElementName = ElementName, Namespace = Namespace)] diff --git a/Platform.Communication/Protocol/Gexf/Graph.cs b/Platform.Communication/Protocol/Gexf/Graph.cs index e718163..3241022 100644 --- a/Platform.Communication/Protocol/Gexf/Graph.cs +++ b/Platform.Communication/Protocol/Gexf/Graph.cs @@ -3,6 +3,8 @@ using System.Xml; using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Gexf { public class Graph diff --git a/Platform.Communication/Protocol/Gexf/Node.cs b/Platform.Communication/Protocol/Gexf/Node.cs index 89aa851..1aa2edb 100644 --- a/Platform.Communication/Protocol/Gexf/Node.cs +++ b/Platform.Communication/Protocol/Gexf/Node.cs @@ -2,6 +2,8 @@ using System.Xml; using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Gexf { public class Node diff --git a/Platform.Communication/Protocol/Udp/UdpClientExtensions.cs b/Platform.Communication/Protocol/Udp/UdpClientExtensions.cs index 826b14e..1d8e748 100644 --- a/Platform.Communication/Protocol/Udp/UdpClientExtensions.cs +++ b/Platform.Communication/Protocol/Udp/UdpClientExtensions.cs @@ -2,9 +2,10 @@ using System.Net.Sockets; using System.Runtime.CompilerServices; using System.Text; -using Platform.Threading; using Platform.Singletons; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Udp { public static class UdpClientExtensions diff --git a/Platform.Communication/Protocol/Udp/UdpReceiver.cs b/Platform.Communication/Protocol/Udp/UdpReceiver.cs index b6c46a1..8a2cd10 100644 --- a/Platform.Communication/Protocol/Udp/UdpReceiver.cs +++ b/Platform.Communication/Protocol/Udp/UdpReceiver.cs @@ -6,6 +6,8 @@ using Platform.Exceptions; using Platform.Threading; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Udp { public delegate void MessageHandlerCallback(string message); diff --git a/Platform.Communication/Protocol/Udp/UdpSender.cs b/Platform.Communication/Protocol/Udp/UdpSender.cs index db19ea2..df19887 100644 --- a/Platform.Communication/Protocol/Udp/UdpSender.cs +++ b/Platform.Communication/Protocol/Udp/UdpSender.cs @@ -3,6 +3,8 @@ using System.Runtime.CompilerServices; using Platform.Disposables; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Udp { /// diff --git a/Platform.Communication/Protocol/Xml/Serializer.cs b/Platform.Communication/Protocol/Xml/Serializer.cs index 74ee6ec..4e2616b 100644 --- a/Platform.Communication/Protocol/Xml/Serializer.cs +++ b/Platform.Communication/Protocol/Xml/Serializer.cs @@ -2,6 +2,8 @@ using System.Text; using System.Xml.Serialization; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member + namespace Platform.Communication.Protocol.Xml { public static class Serializer