|
|
|
@ -106,10 +106,15 @@ namespace WebSocketSharp.Net
|
|
|
|
/// <param name="streamingContext">
|
|
|
|
/// <param name="streamingContext">
|
|
|
|
/// A <see cref="StreamingContext"/> that specifies the destination for the serialization.
|
|
|
|
/// A <see cref="StreamingContext"/> that specifies the destination for the serialization.
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
[SecurityPermission (
|
|
|
|
[
|
|
|
|
SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.SerializationFormatter)]
|
|
|
|
SecurityPermission (
|
|
|
|
|
|
|
|
SecurityAction.LinkDemand,
|
|
|
|
|
|
|
|
Flags = SecurityPermissionFlag.SerializationFormatter
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
]
|
|
|
|
public override void GetObjectData (
|
|
|
|
public override void GetObjectData (
|
|
|
|
SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
|
|
SerializationInfo serializationInfo, StreamingContext streamingContext
|
|
|
|
|
|
|
|
)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
base.GetObjectData (serializationInfo, streamingContext);
|
|
|
|
base.GetObjectData (serializationInfo, streamingContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|