Skip to content

Commit

Permalink
Today no comments, so let's ignore warnings for a while.
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Aug 23, 2019
1 parent 29eae52 commit 246b783
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Gexf/Edge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Gexf/Enums.cs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Gexf/Gexf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Gexf/Graph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Gexf/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion Platform.Communication/Protocol/Udp/UdpClientExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Udp/UdpReceiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Udp/UdpSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
/// <summary>
Expand Down
2 changes: 2 additions & 0 deletions Platform.Communication/Protocol/Xml/Serializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<T>
Expand Down

0 comments on commit 246b783

Please sign in to comment.