This topic has not yet been rated - Rate this topic

FileExtensionToContentTypeDefinition Class

Specifies a mapping between a content type and a file extension.

Object
  Microsoft.VisualStudio.Utilities::FileExtensionToContentTypeDefinition

Namespace:  Microsoft.VisualStudio.Utilities
Assembly:  Microsoft.VisualStudio.CoreUtility (in Microsoft.VisualStudio.CoreUtility.dll)
public ref class FileExtensionToContentTypeDefinition sealed

The FileExtensionToContentTypeDefinition type exposes the following members.

  NameDescription
Public methodFileExtensionToContentTypeDefinitionInitializes a new instance of FileExtensionToContentTypeDefinition.
Top
  NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

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.
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.