7 instantiations of ContentType
System.IO.Packaging (7)
System\IO\Packaging\PackagePart.cs (2)
121
_contentType = new
ContentType
(contentType);
191
_contentType = new
ContentType
(contentType);
System\IO\Packaging\PackagingUtilities.cs (1)
16
= new
ContentType
("application/vnd.openxmlformats-package.relationships+xml");
System\IO\Packaging\PartBasedPackageProperties.cs (1)
848
= new
ContentType
("application/vnd.openxmlformats-package.core-properties+xml");
System\IO\Packaging\ZipPackage.cs (3)
65
_contentTypeHelper.AddContentType((PackUriHelper.ValidatedPartUri)partUri, new
ContentType
(contentType), level);
1180
_defaultDictionary.Add(temporaryUri.PartUriExtension, new
ContentType
(contentTypeAttributeValue!));
1209
_overrideDictionary.Add(partUri, new
ContentType
(contentTypeAttributeValue!));
22 references to ContentType
System.IO.Packaging (22)
System\IO\Packaging\ContentType.cs (2)
159
internal bool AreTypeAndSubTypeEqual(
ContentType
contentType)
178
internal bool AreTypeAndSubTypeEqual(
ContentType
contentType, bool allowParameterValuePairs)
System\IO\Packaging\InternalRelationshipCollection.cs (1)
568
private static void ThrowIfIncorrectContentType(
ContentType
contentType)
System\IO\Packaging\PackagePart.cs (2)
566
internal
ContentType
ValidatedContentType
801
private
ContentType
? _contentType;
System\IO\Packaging\PackagingUtilities.cs (1)
15
internal static readonly
ContentType
RelationshipPartContentType
System\IO\Packaging\PartBasedPackageProperties.cs (1)
847
private static readonly
ContentType
s_coreDocumentPropertiesContentType
System\IO\Packaging\ZipPackage.cs (15)
217
ContentType
? contentType = _contentTypeHelper.GetContentType(validatedPartUri);
687
ContentType
? contentType = _contentTypeHelper.GetContentType(partUri);
776
_defaultDictionary = new Dictionary<string,
ContentType
>(DefaultDictionaryInitialSize, s_extensionEqualityComparer);
811
internal void AddContentType(PackUriHelper.ValidatedPartUri partUri,
ContentType
contentType,
828
|| (_defaultDictionary.TryGetValue(extension, out
ContentType
? value)
848
internal
ContentType
? GetContentType(PackUriHelper.ValidatedPartUri partUri)
854
if (_overrideDictionary.TryGetValue(partUri, out
ContentType
? val))
862
if (_defaultDictionary.TryGetValue(extension, out
ContentType
? value))
950
_overrideDictionary ??= new Dictionary<PackUriHelper.ValidatedPartUri,
ContentType
>(OverrideDictionaryInitialSize);
1232
private void AddOverrideElement(PackUriHelper.ValidatedPartUri partUri,
ContentType
contentType)
1248
private void AddDefaultElement(string extension,
ContentType
contentType)
1257
private static void WriteOverrideElement(XmlWriter xmlWriter, PackUriHelper.ValidatedPartUri partUri,
ContentType
contentType)
1266
private static void WriteDefaultElement(XmlWriter xmlWriter, string extension,
ContentType
contentType)
1293
private Dictionary<PackUriHelper.ValidatedPartUri,
ContentType
>? _overrideDictionary;
1294
private readonly Dictionary<string,
ContentType
> _defaultDictionary;