4 instantiations of ActiveDirectorySchema
System.DirectoryServices (4)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchema.cs (1)
175return new ActiveDirectorySchema(context, schemaNC, directoryEntryMgr);
System\DirectoryServices\ActiveDirectory\ConfigSet.cs (1)
302_cachedSchema = new ActiveDirectorySchema(_context, _directoryEntryMgr.ExpandWellKnownDN(WellKnownDN.SchemaNamingContext));
System\DirectoryServices\ActiveDirectory\Forest.cs (1)
724_cachedSchema = new ActiveDirectorySchema(_context, _directoryEntryMgr.ExpandWellKnownDN(WellKnownDN.SchemaNamingContext));
System\DirectoryServices\ActiveDirectory\GlobalCatalog.cs (1)
239_schema = new ActiveDirectorySchema(context, schemaNC);
26 references to ActiveDirectorySchema
System.DirectoryServices (26)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchema.cs (12)
87public static ActiveDirectorySchema GetSchema(DirectoryContext context) 101throw new ActiveDirectoryObjectNotFoundException(SR.ContextNotAssociatedWithDomain, typeof(ActiveDirectorySchema), null); 111throw new ActiveDirectoryObjectNotFoundException(SR.ForestNotFound, typeof(ActiveDirectorySchema), context.Name); 115throw new ActiveDirectoryObjectNotFoundException(SR.ConfigSetNotFound, typeof(ActiveDirectorySchema), context.Name); 119throw new ActiveDirectoryObjectNotFoundException(SR.Format(SR.ServerNotFound, context.Name), typeof(ActiveDirectorySchema), null); 135throw new ActiveDirectoryObjectNotFoundException(SR.Format(SR.ServerNotFound, context.Name), typeof(ActiveDirectorySchema), null); 148throw new ActiveDirectoryObjectNotFoundException(SR.ForestNotFound, typeof(ActiveDirectorySchema), context.Name); 152throw new ActiveDirectoryObjectNotFoundException(SR.ConfigSetNotFound, typeof(ActiveDirectorySchema), context.Name); 156throw new ActiveDirectoryObjectNotFoundException(SR.Format(SR.ServerNotFound, context.Name), typeof(ActiveDirectorySchema), null); 169throw new ActiveDirectoryObjectNotFoundException(SR.ConfigSetNotFound, typeof(ActiveDirectorySchema), context.Name); 381public static ActiveDirectorySchema GetCurrentSchema() 383return ActiveDirectorySchema.GetSchema(new DirectoryContext(DirectoryContextType.Forest));
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaClass.cs (4)
24private ActiveDirectorySchema? _schema; 354ActiveDirectorySchema schemaObject = ActiveDirectorySchema.GetSchema(_context); 367_schema = ActiveDirectorySchema.GetSchema(schemaRoleOwnerContext);
System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (5)
31private ActiveDirectorySchema? _schema; 396ActiveDirectorySchema schemaObject = ActiveDirectorySchema.GetSchema(_context); 409_schema = ActiveDirectorySchema.GetSchema(schemaRoleOwnerContext); 981ReadOnlyActiveDirectorySchemaPropertyCollection linkedProperties = ActiveDirectorySchema.GetAllProperties(_context, _schemaEntry, filter);
System\DirectoryServices\ActiveDirectory\ConfigSet.cs (2)
24private ActiveDirectorySchema? _cachedSchema; 293public ActiveDirectorySchema Schema
System\DirectoryServices\ActiveDirectory\Forest.cs (2)
40private ActiveDirectorySchema? _cachedSchema; 715public ActiveDirectorySchema Schema
System\DirectoryServices\ActiveDirectory\GlobalCatalog.cs (1)
13private ActiveDirectorySchema? _schema;