• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.ActiveDirectory
    • ActiveDirectoryExtensions
    • ActiveDirectoryGlobals
    • AdPropertyAttribute
    • IAdObject
    • IAdObjectFactory
  • Dapplo.ActiveDirectory.Entities
    • Comparisons
    • DistinguishedName
    • Operators
    • Property
    • PropertyComparison
    • Query
    • QueryElement
    • Value
  • Dapplo.ActiveDirectory.Enums
    • AdProperties
    • ClassNames
    • ComputerProperties
    • DistinguishedNameAttributes
    • UserAccountControlFlags
    • UserProperties
  • Dapplo.ActiveDirectory.Extensions
    • AdDateTimeExtensions
    • DirectoryEntryPropertyExtensions
    • EnumExtensions
    • PropertyInfoExtension
  • Dapplo.ActiveDirectory.Finder
    • FinderAddonModule
    • Startup
  • Dapplo.ActiveDirectory.Finder.Configuration
    • IFinderTranslations
  • Dapplo.ActiveDirectory.Finder.Entities
    • IUser
  • Dapplo.ActiveDirectory.Finder.Ui.ViewModels
    • FinderViewModel
  • Dapplo.ActiveDirectory.Finder.Ui.Views
    • FinderView
  • Dapplo.ActiveDirectory.Internal
    • IAdsLargeInteger
    • IADsSecurityDescriptor
    • SimpleDictionaryProxy

Class ActiveDirectoryGlobals

Some configuration settings

Inheritance
System.Object
ActiveDirectoryGlobals
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dapplo.ActiveDirectory
Assembly: Dapplo.ActiveDirectory.dll
Syntax
public static class ActiveDirectoryGlobals

Properties

| Improve this Doc View Source

AuthenticationType

Specify the value for AuthenticationTypes to be used when none is supplied. The default according to here is Secure

Declaration
public static AuthenticationTypes AuthenticationType { get; set; }
Property Value
Type Description
System.DirectoryServices.AuthenticationTypes
| Improve this Doc View Source

CacheResults

Specify if the search is cached

Declaration
public static bool CacheResults { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

DefaultDomainServerName

This is the default domain server for the current user, which is cached but can be overwritten by the application.

Declaration
public static string DefaultDomainServerName { get; set; }
Property Value
Type Description
System.String

string

| Improve this Doc View Source

Factory

This is the factory used to generate all the objects in the result

Declaration
public static IAdObjectFactory Factory { get; set; }
Property Value
Type Description
IAdObjectFactory
| Improve this Doc View Source

LdapUriFormat

The format used for the LDAP URI building

Declaration
public static string LdapUriFormat { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PageSize

Specify the global page size for searches Note: 0 means no page size, and retrieve everything up to the SizeLimit Everything smaller than the SizeLimit (but gt 0) will make the search ignore the size limit!

Declaration
public static int PageSize { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

SizeLimit

Specify the global size limit for searches Note: 0 means no limit If size limit is large than page size, this limit is ignored!!!

Declaration
public static int SizeLimit { get; set; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © Dapplo