Skip to content

Commit

Permalink
Add class ActiveDirectorySchemaPropertyCollection, ReadOnlyActiveDire…
Browse files Browse the repository at this point in the history
…ctorySchemaPropertyCollection
  • Loading branch information
alesliehughes committed Jul 30, 2013
1 parent 73caba4 commit dd53968
Show file tree
Hide file tree
Showing 3 changed files with 160 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/******************************************************************************
* 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.Collections;

namespace System.DirectoryServices.ActiveDirectory
{
public class ActiveDirectorySchemaPropertyCollection : CollectionBase
{
public ActiveDirectorySchemaProperty this [int index] {
get {
throw new NotImplementedException ();
}
set {
throw new NotImplementedException ();
}
}

public int Add (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public void AddRange (ActiveDirectorySchemaProperty[] properties)
{
throw new NotImplementedException ();
}

public void AddRange (ActiveDirectorySchemaPropertyCollection properties)
{
throw new NotImplementedException ();
}

public void AddRange (ReadOnlyActiveDirectorySchemaPropertyCollection properties)
{
throw new NotImplementedException ();
}

public void Remove (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public void Insert (int index, ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public bool Contains (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public void CopyTo (ActiveDirectorySchemaProperty[] properties, int index)
{
throw new NotImplementedException ();
}

public int IndexOf (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

protected override void OnClearComplete ()
{
throw new NotImplementedException ();
}

protected override void OnInsertComplete (int index, object value)
{
throw new NotImplementedException ();
}

protected override void OnRemoveComplete (int index, object value)
{
throw new NotImplementedException ();
}

protected override void OnSetComplete (int index, object oldValue, object newValue)
{
throw new NotImplementedException ();
}

protected override void OnValidate (object value)
{
throw new NotImplementedException ();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/******************************************************************************
* 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.Collections;

namespace System.DirectoryServices.ActiveDirectory
{
public class ReadOnlyActiveDirectorySchemaPropertyCollection : ReadOnlyCollectionBase
{
public ActiveDirectorySchemaProperty this [int index] {
get {
throw new NotImplementedException ();
}
}

public bool Contains (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public int IndexOf (ActiveDirectorySchemaProperty schemaProperty)
{
throw new NotImplementedException ();
}

public void CopyTo (ActiveDirectorySchemaProperty[] properties, int index)
{
throw new NotImplementedException ();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ System.DirectoryServices.ActiveDirectory/ActiveDirectoryReplicationMetadata.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectoryRoleCollection.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySchedule.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySchemaProperty.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySecurity.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySiteOptions.cs
System.DirectoryServices.ActiveDirectory/ActiveDirectorySyntax.cs
Expand All @@ -58,6 +59,7 @@ System.DirectoryServices.ActiveDirectory/LocatorOptions.cs
System.DirectoryServices.ActiveDirectory/MinuteOfHour.cs
System.DirectoryServices.ActiveDirectory/NotificationStatus.cs
System.DirectoryServices.ActiveDirectory/PropertyTypes.cs
System.DirectoryServices.ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs
System.DirectoryServices.ActiveDirectory/ReadOnlyDirectoryServerCollection.cs
System.DirectoryServices.ActiveDirectory/ReadOnlyStringCollection.cs
System.DirectoryServices.ActiveDirectory/ReplicationConnection.cs
Expand Down

0 comments on commit dd53968

Please sign in to comment.