System\DirectoryServices\ActiveDirectory\ActiveDirectorySchemaProperty.cs (24)
78private static readonly Syntax[] s_syntaxes = {/* CaseExactString */ new Syntax("2.5.5.3", 27, null),
79/* CaseIgnoreString */ new Syntax("2.5.5.4", 20, null),
80/* NumericString */ new Syntax("2.5.5.6", 18, null),
81/* DirectoryString */ new Syntax("2.5.5.12", 64, null),
82/* OctetString */ new Syntax("2.5.5.10", 4, null),
83/* SecurityDescriptor */ new Syntax("2.5.5.15", 66, null),
84/* Int */ new Syntax("2.5.5.9", 2, null),
85/* Int64 */ new Syntax("2.5.5.16", 65, null),
86/* Bool */ new Syntax("2.5.5.8", 1, null),
87/* Oid */ new Syntax("2.5.5.2", 6, null),
88/* GeneralizedTime */ new Syntax("2.5.5.11", 24, null),
89/* UtcTime */ new Syntax("2.5.5.11", 23, null),
90/* DN */ new Syntax("2.5.5.1", 127, s_dnOMObjectClass),
91/* DNWithBinary */ new Syntax("2.5.5.7", 127, s_dNWithBinaryOMObjectClass),
92/* DNWithString */ new Syntax("2.5.5.14", 127, s_dNWithStringOMObjectClass),
93/* Enumeration */ new Syntax("2.5.5.9", 10, null),
94/* IA5String */ new Syntax("2.5.5.5", 22, null),
95/* PrintableString */ new Syntax("2.5.5.5", 19, null),
96/* Sid */ new Syntax("2.5.5.17", 4, null),
97/* AccessPointDN */ new Syntax("2.5.5.14", 127, s_accessPointDnOMObjectClass),
98/* ORName */ new Syntax("2.5.5.7", 127, s_oRNameOMObjectClass),
99/* PresentationAddress */ new Syntax("2.5.5.13", 127, s_presentationAddressOMObjectClass),
100/* ReplicaLink */ new Syntax("2.5.5.10", 127, s_replicaLinkOMObjectClass)};
1377if (s_syntaxes[i].Equals(new Syntax(syntaxId, oMID, oMObjectClass)))