DocSpace-buildtools/common/ASC.ActiveDirectory/Base/Data/LdapObject.cs

49 lines
1.4 KiB
C#
Raw Normal View History

2022-03-14 18:58:06 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2021
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
2022-03-17 19:44:34 +00:00
namespace ASC.ActiveDirectory.Base.Data;
/// <summary>
/// LDAP object class
/// </summary>
public abstract class LdapObject
2022-03-14 18:58:06 +00:00
{
2022-03-17 19:44:34 +00:00
#region .Public
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public abstract string DistinguishedName { get; }
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public abstract string Sid { get; }
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public abstract string SidAttribute { get; }
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public abstract bool IsDisabled { get; }
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
#endregion
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
/// <summary>
/// Get property object
/// </summary>
/// <param name="propertyName">property name</param>
/// <returns>value object</returns>
public abstract object GetValue(string propertyName, bool getBytes = false);
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
/// <summary>
/// Get property values
/// </summary>
/// <param name="propertyName">property name</param>
/// <returns>list of values</returns>
public abstract List<string> GetValues(string propertyName);
2022-03-14 18:58:06 +00:00
}