Skip to content

Commit

Permalink
Add missing file
Browse files Browse the repository at this point in the history
References #13
  • Loading branch information
andreashuber-lawo committed Dec 28, 2015
1 parent 3fe2ee8 commit 2117145
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Lawo.GlowAnalyzerProxy.Main/ListenFailedEventArgs.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// <copyright>Copyright 2012-2015 Lawo AG (http://www.lawo.com).</copyright>
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

namespace Lawo.GlowAnalyzerProxy.Main
{
using System;
using System.Net.Sockets;

internal sealed class ListenFailedEventArgs : EventArgs
{
private readonly SocketException exception;

////////////////////////////////////////////////////////////////////////////////////////////////////////////////

internal ListenFailedEventArgs(SocketException exception)
{
this.exception = exception;
}

internal SocketException Exception
{
get { return this.exception; }
}
}
}

0 comments on commit 2117145

Please sign in to comment.