forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add class ActiveDirectorySchemaPropertyCollection, ReadOnlyActiveDire…
…ctorySchemaPropertyCollection
- Loading branch information
1 parent
73caba4
commit dd53968
Showing
3 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
...vices/System.DirectoryServices.ActiveDirectory/ActiveDirectorySchemaPropertyCollection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 (); | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...stem.DirectoryServices.ActiveDirectory/ReadOnlyActiveDirectorySchemaPropertyCollection.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 (); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters