7 instantiations of ContentType
System.IO.Packaging (7)
System\IO\Packaging\PackagePart.cs (2)
115
_contentType = new
ContentType
(contentType);
185
_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);
1204
_defaultDictionary.Add(temporaryUri.PartUriExtension, new
ContentType
(contentTypeAttributeValue!));
1233
_overrideDictionary.Add(partUri, new
ContentType
(contentTypeAttributeValue!));
22 references to ContentType
System.IO.Packaging (22)
System\IO\Packaging\ContentType.cs (2)
156
internal bool AreTypeAndSubTypeEqual(
ContentType
contentType)
175
internal bool AreTypeAndSubTypeEqual(
ContentType
contentType, bool allowParameterValuePairs)
System\IO\Packaging\InternalRelationshipCollection.cs (1)
558
private static void ThrowIfIncorrectContentType(
ContentType
contentType)
System\IO\Packaging\PackagePart.cs (2)
560
internal
ContentType
ValidatedContentType
795
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
>(
1256
private void AddOverrideElement(PackUriHelper.ValidatedPartUri partUri,
ContentType
contentType)
1272
private void AddDefaultElement(string extension,
ContentType
contentType)
1281
private static void WriteOverrideElement(XmlWriter xmlWriter, PackUriHelper.ValidatedPartUri partUri,
ContentType
contentType)
1290
private static void WriteDefaultElement(XmlWriter xmlWriter, string extension,
ContentType
contentType)
1317
private Dictionary<PackUriHelper.ValidatedPartUri,
ContentType
>? _overrideDictionary;
1318
private readonly Dictionary<string,
ContentType
> _defaultDictionary;