45 references to NativeComInterfaces
System.DirectoryServices (45)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaClass.cs (2)
20
private readonly
NativeComInterfaces
.IAdsClass? _iadsClass;
104
_iadsClass = (
NativeComInterfaces
.IAdsClass)_abstractClassEntry.NativeObject;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (2)
27
private readonly
NativeComInterfaces
.IAdsProperty? _iadsProperty;
157
_iadsProperty = (
NativeComInterfaces
.IAdsProperty)_abstractPropertyEntry.NativeObject;
System\DirectoryServices\ActiveDirectory\ActiveDirectorySite.cs (8)
884
NativeComInterfaces
.IAdsPathname pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
886
pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_OFF_EX;
942
pathCracker.Set(fromSite,
NativeComInterfaces
.ADS_SETTYPE_DN);
943
fromSite = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_LEAF);
1021
pathCracker.Set(otherSite,
NativeComInterfaces
.ADS_SETTYPE_DN);
1022
otherSite = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_LEAF);
System\DirectoryServices\ActiveDirectory\ActiveDirectorySiteLink.cs (6)
696
NativeComInterfaces
.IAdsPathname? pathCracker = null;
697
pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
700
pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_OFF_EX;
716
pathCracker.Set(dn,
NativeComInterfaces
.ADS_SETTYPE_DN);
717
string rdn = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_LEAF);
System\DirectoryServices\ActiveDirectory\ActiveDirectorySiteLinkBridge.cs (6)
353
NativeComInterfaces
.IAdsPathname? pathCracker = null;
354
pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
356
pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_OFF_EX;
372
pathCracker.Set(dn,
NativeComInterfaces
.ADS_SETTYPE_DN);
373
string rdn = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_LEAF);
System\DirectoryServices\ActiveDirectory\ActiveDirectorySubnet.cs (6)
68
NativeComInterfaces
.IAdsPathname pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
70
pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_OFF_EX;
74
pathCracker.Set(tmp,
NativeComInterfaces
.ADS_SETTYPE_DN);
75
string rdn = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_LEAF);
System\DirectoryServices\ActiveDirectory\DirectoryEntryManager.cs (12)
90
private readonly
NativeComInterfaces
.IAdsPathname _pathCracker;
95
_pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
96
_pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_ON;
159
_pathCracker.Set(dn,
NativeComInterfaces
.ADS_SETTYPE_DN);
160
string escapedDN = _pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_X500_DN);
242
NativeComInterfaces
.IAdsPathname pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();
243
pathCracker.EscapedMode =
NativeComInterfaces
.ADS_ESCAPEDMODE_ON;
244
pathCracker.Set(dn,
NativeComInterfaces
.ADS_SETTYPE_DN);
245
string escapedDN = pathCracker.Retrieve(
NativeComInterfaces
.ADS_FORMAT_X500_DN);
System\DirectoryServices\ActiveDirectory\Utils.cs (3)
1838
NativeComInterfaces
.IAdsPathname pathCracker = (
NativeComInterfaces
.IAdsPathname)new
NativeComInterfaces
.Pathname();