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