Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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