FileExtensionToContentTypeDefinition Class
Specifies a mapping between a content type and a file extension.
Assembly: Microsoft.VisualStudio.CoreUtility (in Microsoft.VisualStudio.CoreUtility.dll)
| Name | Description | |
|---|---|---|
![]() | FileExtensionToContentTypeDefinition() | Initializes a new instance of FileExtensionToContentTypeDefinition. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | ToString() | (Inherited from Object.) |
Because you cannot subclass this type, you can use the [Export] attribute with no type.
For more information about this definition, see Walkthrough: Linking a Content Type to a File Name Extension.
The following code shows how to use this definition to link a content type and a file extension:
internal sealed class Components
{
[Export]
[FileExtension(".abc")]
[ContentType("alphabet")]
internal FileExtensionToContentTypeDefinition abcFileExtensionDefinition;
{ other components }
}
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show:
