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:44:26 +0400
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>2013-08-07 02:18:31 +0400
commit3942cbcf71366cfd2224427256db24931d283d4e (patch)
treec859f0970d1cfa6c9a2c1c37826613d9ad487b14 /mcs/class/System.DirectoryServices
parentb4f1c73e839dbc282bba0b62ebb68418d3da2f45 (diff)
Add class DirectoryVirtualListView
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/DirectoryVirtualListView.cs126
2 files changed, 127 insertions, 0 deletions
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources b/mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources
index f36fccf084d..64326708633 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/DirectoryVirtualListView.cs
System.DirectoryServices/DirectoryVirtualListViewContext.cs
System.DirectoryServices/DSDescriptionAttribute.cs
System.DirectoryServices/ExtendedDN.cs
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListView.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListView.cs
new file mode 100644
index 00000000000..92aa0769a6c
--- /dev/null
+++ b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryVirtualListView.cs
@@ -0,0 +1,126 @@
+/******************************************************************************
+* 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;
+using System.ComponentModel;
+
+namespace System.DirectoryServices
+{
+ public class DirectoryVirtualListView
+ {
+ [DefaultValue(0), DSDescription("DSBeforeCount")]
+ public int BeforeCount {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue(0), DSDescription("DSAfterCount")]
+ public int AfterCount {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue(0), DSDescription("DSOffset")]
+ public int Offset {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue(0), DSDescription("DSTargetPercentage")]
+ public int TargetPercentage {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue("")]
+ [TypeConverter ("System.Diagnostics.Design.StringValueConverter, " + Consts.AssemblySystem_Design)]
+ [DSDescription("DSTarget")]
+ public string Target {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue(0), DSDescription("DSApproximateTotal")]
+ public int ApproximateTotal {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ [DefaultValue(null), DSDescription("DSDirectoryVirtualListViewContext")]
+ public DirectoryVirtualListViewContext DirectoryVirtualListViewContext {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
+
+ public DirectoryVirtualListView ()
+ {
+ }
+
+ public DirectoryVirtualListView (int afterCount)
+ {
+
+ }
+
+ public DirectoryVirtualListView (int beforeCount, int afterCount, int offset)
+ {
+ }
+
+ public DirectoryVirtualListView (int beforeCount, int afterCount, string target)
+ {
+ }
+
+ public DirectoryVirtualListView (int beforeCount, int afterCount, int offset, DirectoryVirtualListViewContext context)
+ {
+ }
+
+ public DirectoryVirtualListView (int beforeCount, int afterCount, string target, DirectoryVirtualListViewContext context)
+ {
+ }
+ }
+}