Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.OleDb/OleDbPermissionAttribute.cs')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/OleDbPermissionAttribute.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb/OleDbPermissionAttribute.cs b/mcs/class/System.Data/System.Data.OleDb/OleDbPermissionAttribute.cs
deleted file mode 100644
index fa023e78942..00000000000
--- a/mcs/class/System.Data/System.Data.OleDb/OleDbPermissionAttribute.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// System.Data.OleDb.OleDbPermissionAttribute
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-//
-// Copyright (C) Rodrigo Moya, 2002
-//
-
-using System.Data;
-using System.Data.Common;
-using System.Security;
-
-namespace System.Data.OleDb
-{
- [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class
- | AttributeTargets.Struct | AttributeTargets.Constructor |
- AttributeTargets.Method)]
- [Serializable]
- public sealed class OleDbPermissionAttribute : DBDataPermissionAttribute
- {
- [MonoTODO]
- [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class
- | AttributeTargets.Struct | AttributeTargets.Constructor |
- AttributeTargets.Method)]
- [Serializable]
- public override IPermission CreatePermission () {
- throw new NotImplementedException ();
- }
- }
-}