1 instantiation of LocalizedName
System.IdentityModel (1)
System\IdentityModel\Metadata\MetadataSerializer.cs (1)
143return new LocalizedName();
24 references to LocalizedName
System.IdentityModel (24)
System\IdentityModel\Metadata\MetadataSerializer.cs (10)
141protected virtual LocalizedName CreateLocalizedNameInstance() 1054protected virtual LocalizedName ReadLocalizedName(XmlReader reader) 1061LocalizedName resultName = CreateLocalizedNameInstance(); 1077ReadCustomAttributes<LocalizedName>(reader, resultName); 1087if (ReadCustomElement<LocalizedName>(reader, resultName)) 2515protected virtual void WriteLocalizedName(XmlWriter writer, LocalizedName name, XmlQualifiedName element) 2544WriteCustomAttributes<LocalizedName>(writer, name); 2546WriteCustomElements<LocalizedName>(writer, name); 2707foreach (LocalizedName name in organization.Names) 2718foreach (LocalizedName displayName in organization.DisplayNames)
System\IdentityModel\Metadata\Organization.cs (14)
15LocalizedEntryCollection<LocalizedName> displayNames = new LocalizedEntryCollection<LocalizedName>(); 16LocalizedEntryCollection<LocalizedName> names = new LocalizedEntryCollection<LocalizedName>(); 23: this(new LocalizedEntryCollection<LocalizedName>(), new LocalizedEntryCollection<LocalizedName>(), new LocalizedEntryCollection<LocalizedUri>()) 30/// <param name="names">A collection of <see cref="LocalizedName"/> for this instance.</param> 31/// <param name="displayNames">A collection of <see cref="LocalizedName"/> for this instance representing the display names.</param> 34public Organization(LocalizedEntryCollection<LocalizedName> names, LocalizedEntryCollection<LocalizedName> displayNames, LocalizedEntryCollection<LocalizedUri> urls) 58/// Gets the collection of <see cref="LocalizedName"/> representing the display names. 61public LocalizedEntryCollection<LocalizedName> DisplayNames 67/// Gets the collection of <see cref="LocalizedName"/>. 70public LocalizedEntryCollection<LocalizedName> Names