|
|
|
@ -137,12 +137,16 @@ 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,
|
|
|
|
SecurityPermission (
|
|
|
|
Flags = SecurityPermissionFlag.SerializationFormatter,
|
|
|
|
SecurityAction.LinkDemand,
|
|
|
|
SerializationFormatter = true)]
|
|
|
|
Flags = SecurityPermissionFlag.SerializationFormatter,
|
|
|
|
|
|
|
|
SerializationFormatter = true
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
]
|
|
|
|
void ISerializable.GetObjectData (
|
|
|
|
void ISerializable.GetObjectData (
|
|
|
|
SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
|
|
SerializationInfo serializationInfo, StreamingContext streamingContext
|
|
|
|
|
|
|
|
)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
base.GetObjectData (serializationInfo, streamingContext);
|
|
|
|
base.GetObjectData (serializationInfo, streamingContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|