System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaClass.cs (16)
293SetProperty(PropertyManager.LdapDisplayName, _ldapDisplayName);
296SetProperty(PropertyManager.GovernsID, _oid);
299SetProperty(PropertyManager.Description, _description);
322SetProperty(PropertyManager.SubClassOf, _subClassOf.Name);
327SetProperty(PropertyManager.SubClassOf, "top");
331SetProperty(PropertyManager.ObjectClassCategory, _type);
336SetProperty(PropertyManager.SchemaIDGuid, _schemaGuidBinaryForm);
342SetProperty(PropertyManager.DefaultSecurityDescriptor, _defaultSDSddlForm);
467SetProperty(PropertyManager.Cn, value);
511SetProperty(PropertyManager.GovernsID, value);
541SetProperty(PropertyManager.Description, value);
562SetProperty(PropertyManager.IsDefunct, value);
924SetProperty(PropertyManager.SubClassOf, value);
960SetProperty(PropertyManager.ObjectClassCategory, value);
988SetProperty(PropertyManager.SchemaIDGuid, (value.Equals(Guid.Empty)) ? null : value.ToByteArray());
1028SetProperty(PropertyManager.DefaultSecurityDescriptor, value?.GetSecurityDescriptorSddlForm(AccessControlSections.All));