Add class TrustRelationshipInformation
authorAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Tue, 30 Jul 2013 03:33:12 +0000 (13:33 +1000)
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Tue, 30 Jul 2013 07:58:14 +0000 (17:58 +1000)
mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/TrustRelationshipInformation.cs [new file with mode: 0644]
mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources

diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/TrustRelationshipInformation.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/TrustRelationshipInformation.cs
new file mode 100644 (file)
index 0000000..4dfcbb2
--- /dev/null
@@ -0,0 +1,52 @@
+/******************************************************************************
+* 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.ActiveDirectory
+{
+       public class TrustRelationshipInformation
+       {
+               public string SourceName {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public string TargetName {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public TrustType TrustType {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public TrustDirection TrustDirection {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+       }
+}
index 5576b237340e289f073430933c09ad9ab39f71b3..e77586bcf1916c5c9997dc497d247dc62b8882bc 100644 (file)
@@ -64,4 +64,5 @@ System.DirectoryServices.ActiveDirectory/TopLevelName.cs
 System.DirectoryServices.ActiveDirectory/TopLevelNameCollection.cs
 System.DirectoryServices.ActiveDirectory/TopLevelNameStatus.cs
 System.DirectoryServices.ActiveDirectory/TrustDirection.cs
+System.DirectoryServices.ActiveDirectory/TrustRelationshipInformation.cs
 System.DirectoryServices.ActiveDirectory/TrustType.cs