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:
authorRichard Webb <webby@beardmouse.org.uk>2015-10-08 19:34:47 +0300
committerRichard Webb <webby@beardmouse.org.uk>2015-10-08 19:34:47 +0300
commitd573d5034bda4fed4d83faa3c740719732776770 (patch)
treeff7b86b492b436a44ab74b595f970f20c69e2a1f /mcs/class/System.DirectoryServices
parenta4c91bbedfeb0bb5be95cdd52e5760b46a672493 (diff)
Add stub implementation of System.DirectoryServices.DirectoryEntry.ObjectSecurity property
Add stub implementation of System.DirectoryServices.DirectoryEntry.ObjectSecurity property (throws on access)
Diffstat (limited to 'mcs/class/System.DirectoryServices')
-rw-r--r--mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryEntry.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryEntry.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryEntry.cs
index 290608710b0..c5cf0942b1b 100644
--- a/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryEntry.cs
+++ b/mcs/class/System.DirectoryServices/System.DirectoryServices/DirectoryEntry.cs
@@ -392,6 +392,26 @@ namespace System.DirectoryServices
}
/// <summary>
+ /// Gets or sets the security descriptor for this entry.
+ /// </summary>
+ /// <remarks>
+ /// Not implemented yet
+ [DSDescription ("An ActiveDirectorySecurity object that represents the security descriptor for this directory entry.")]
+ [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+ [Browsable (false)]
+ public ActiveDirectorySecurity ObjectSecurity
+ {
+ [MonoTODO]
+ get {
+ throw new NotImplementedException();
+ }
+ [MonoTODO]
+ set {
+ throw new NotImplementedException();
+ }
+ }
+
+ /// <summary>
/// Determines if a cache should be used.
/// </summary>
[DSDescription ("Determines if a cache should be used.")]