You've already forked linux-packaging-mono
51 lines
2.1 KiB
C#
51 lines
2.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="cookieexception.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Net {
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.Serialization;
|
|
using System.Security.Permissions;
|
|
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
[Serializable]
|
|
public class CookieException : FormatException, ISerializable {
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public CookieException() : base() {
|
|
}
|
|
|
|
internal CookieException(string message) : base(message) {
|
|
}
|
|
|
|
internal CookieException(string message, Exception inner) : base(message, inner) {
|
|
}
|
|
|
|
protected CookieException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
: base(serializationInfo, streamingContext) {
|
|
}
|
|
|
|
/// <internalonly/>
|
|
|
|
|
|
[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")]
|
|
[SecurityPermission(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter, SerializationFormatter=true)]
|
|
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext) {
|
|
base.GetObjectData(serializationInfo, streamingContext);
|
|
}
|
|
|
|
|
|
[SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Justification = "System.dll is still using pre-v4 security model and needs this demand")]
|
|
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)]
|
|
public override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
|
{
|
|
base.GetObjectData(serializationInfo, streamingContext);
|
|
}
|
|
}
|
|
}
|