|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Security.Permissions
{
#if NET
[Obsolete(Obsoletions.CodeAccessSecurityMessage, DiagnosticId = Obsoletions.CodeAccessSecurityDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
#endif
public sealed class StorePermission : CodeAccessPermission, IUnrestrictedPermission
{
public StorePermission(PermissionState state) { }
public StorePermission(StorePermissionFlags flag) { }
public StorePermissionFlags Flags { get; set; }
public bool IsUnrestricted() { return false; }
public override IPermission Union(IPermission target) { return null; }
public override bool IsSubsetOf(IPermission target) { return false; }
public override IPermission Intersect(IPermission target) { return null; }
public override IPermission Copy() { return null; }
public override SecurityElement ToXml() { return null; }
public override void FromXml(SecurityElement securityElement) { }
}
}
|