Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

225 lines
5.9 KiB
C#

/******************************************************************************
* 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.Security.Permissions;
namespace System.DirectoryServices.ActiveDirectory
{
[DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true)]
public class Domain : ActiveDirectoryPartition
{
public Forest Forest {
get {
throw new NotImplementedException ();
}
}
public DomainControllerCollection DomainControllers {
get {
throw new NotImplementedException ();
}
}
public DomainCollection Children {
get {
throw new NotImplementedException ();
}
}
public DomainMode DomainMode {
get {
throw new NotImplementedException ();
}
}
public Domain Parent {
get {
throw new NotImplementedException ();
}
}
public DomainController PdcRoleOwner {
get {
throw new NotImplementedException ();
}
}
public DomainController RidRoleOwner {
get {
throw new NotImplementedException ();
}
}
public DomainController InfrastructureRoleOwner {
get {
throw new NotImplementedException ();
}
}
public static Domain GetDomain (DirectoryContext context)
{
throw new NotImplementedException ();
}
public static Domain GetComputerDomain ()
{
throw new NotImplementedException ();
}
public void RaiseDomainFunctionality (DomainMode domainMode)
{
throw new NotImplementedException ();
}
public DomainController FindDomainController ()
{
throw new NotImplementedException ();
}
public DomainController FindDomainController (string siteName)
{
throw new NotImplementedException ();
}
public DomainController FindDomainController (LocatorOptions flag)
{
throw new NotImplementedException ();
}
public DomainController FindDomainController (string siteName, LocatorOptions flag)
{
throw new NotImplementedException ();
}
public DomainControllerCollection FindAllDomainControllers ()
{
throw new NotImplementedException ();
}
public DomainControllerCollection FindAllDomainControllers (string siteName)
{
throw new NotImplementedException ();
}
public DomainControllerCollection FindAllDiscoverableDomainControllers ()
{
throw new NotImplementedException ();
}
public DomainControllerCollection FindAllDiscoverableDomainControllers (string siteName)
{
throw new NotImplementedException ();
}
[DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true), DirectoryServicesPermission(SecurityAction.InheritanceDemand, Unrestricted = true)]
public override DirectoryEntry GetDirectoryEntry ()
{
throw new NotImplementedException ();
}
public TrustRelationshipInformationCollection GetAllTrustRelationships ()
{
throw new NotImplementedException ();
}
public TrustRelationshipInformation GetTrustRelationship (string targetDomainName)
{
throw new NotImplementedException ();
}
public bool GetSelectiveAuthenticationStatus (string targetDomainName)
{
throw new NotImplementedException ();
}
public void SetSelectiveAuthenticationStatus (string targetDomainName, bool enable)
{
throw new NotImplementedException ();
}
public bool GetSidFilteringStatus (string targetDomainName)
{
throw new NotImplementedException ();
}
public void SetSidFilteringStatus (string targetDomainName, bool enable)
{
throw new NotImplementedException ();
}
public void DeleteLocalSideOfTrustRelationship (string targetDomainName)
{
throw new NotImplementedException ();
}
public void DeleteTrustRelationship (Domain targetDomain)
{
throw new NotImplementedException ();
}
public void VerifyOutboundTrustRelationship (string targetDomainName)
{
throw new NotImplementedException ();
}
public void VerifyTrustRelationship (Domain targetDomain, TrustDirection direction)
{
throw new NotImplementedException ();
}
public void CreateLocalSideOfTrustRelationship (string targetDomainName, TrustDirection direction, string trustPassword)
{
throw new NotImplementedException ();
}
public void CreateTrustRelationship (Domain targetDomain, TrustDirection direction)
{
throw new NotImplementedException ();
}
public void UpdateLocalSideOfTrustRelationship (string targetDomainName, string newTrustPassword)
{
throw new NotImplementedException ();
}
public void UpdateLocalSideOfTrustRelationship (string targetDomainName, TrustDirection newTrustDirection, string newTrustPassword)
{
throw new NotImplementedException ();
}
public void UpdateTrustRelationship (Domain targetDomain, TrustDirection newTrustDirection)
{
throw new NotImplementedException ();
}
public void RepairTrustRelationship (Domain targetDomain)
{
throw new NotImplementedException ();
}
public static Domain GetCurrentDomain ()
{
throw new NotImplementedException ();
}
}
}