Skip to content

Commit

Permalink
Merge pull request #116 from Code-Sharp/develop
Browse files Browse the repository at this point in the history
Fixing #115
  • Loading branch information
darkl committed Jan 14, 2016
2 parents 9966e12 + 5e40fe7 commit a2ddc76
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
using System.Runtime.Remoting.Messaging;
using System;
using System.Runtime.Remoting.Messaging;
using WampSharp.V1.Core.Contracts;
using WampSharp.V1.Cra;

namespace WampSharp.V1
{
#if !PCL
[Serializable]
#endif
public class WampRequestContext
{
#region Static Members
Expand Down
3 changes: 3 additions & 0 deletions src/net45/WampSharp/WAMP2/V2/Api/WampEventContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ namespace WampSharp.V2
/// <summary>
/// Includes information about the current event.
/// </summary>
#if !PCL
[Serializable]
#endif
public class WampEventContext
{

Expand Down
3 changes: 3 additions & 0 deletions src/net45/WampSharp/WAMP2/V2/Api/WampInvocationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ namespace WampSharp.V2
/// <summary>
/// Includes information about the current invocation.
/// </summary>
#if !PCL
[Serializable]
#endif
public class WampInvocationContext
{
#region Static Members
Expand Down

0 comments on commit a2ddc76

Please sign in to comment.