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:
authorAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-08-06 03:43:45 +0400
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-08-06 13:22:05 +0400
commitb4f1c73e839dbc282bba0b62ebb68418d3da2f45 (patch)
tree7fe3306d7232dca9e21cc84e9184d9a7a4890ba6 /mcs/class/System.DirectoryServices
parent261ec28e7c2e4a91ef7168c72ae269e63d02c150 (diff)
Add class DirectoryVirtualListViewContext
Diffstat (limited to 'mcs/class/System.DirectoryServices')
-rw-r--r--mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources1
-rw-r--r--mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListViewContext.cs36
2 files changed, 37 insertions, 0 deletions
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources b/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources
index d22697ec7bd..f36fccf084d 100644
--- a/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources
+++ b/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources
@@ -16,6 +16,7 @@ System.DirectoryServices/DirectoryServicesPermissionEntry.cs
System.DirectoryServices/DirectoryServicesPermissionEntryCollection.cs
System.DirectoryServices/DirectorySynchronization.cs
System.DirectoryServices/DirectorySynchronizationOptions.cs
+System.DirectoryServices/DirectoryVirtualListViewContext.cs
System.DirectoryServices/DSDescriptionAttribute.cs
System.DirectoryServices/ExtendedDN.cs
System.DirectoryServices/ExtendedRightAccessRule.cs
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListViewContext.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListViewContext.cs
new file mode 100644
index 00000000000..809fe2f510f
--- /dev/null
+++ b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListViewContext.cs
@@ -0,0 +1,36 @@
+/******************************************************************************
+* The MIT License
+*
+* Permission is hereby granted, free of charge, to any person obtaining a copy
+* of this software and associated documentation files (the Software), to deal
+* in the Software without restriction, including without limitation the rights
+* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+* copies of the Software, and to permit persons to whom the Software is
+* furnished to do so, subject to the following conditions:
+*
+* The above copyright notice and this permission notice shall be included in
+* all copies or substantial portions of the Software.
+*
+* THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+* SOFTWARE.
+*******************************************************************************/
+using System;
+namespace System.DirectoryServices
+{
+ public class DirectoryVirtualListViewContext
+ {
+ public DirectoryVirtualListViewContext ()
+ {
+ }
+
+ public DirectoryVirtualListViewContext Copy ()
+ {
+ throw new NotImplementedException ();
+ }
+ }
+}