IFileExtensionRegistryService2.GetContentTypeForFileName(String) Method

Definition

Gets the content type associated with the given file name.

public:
 Microsoft::VisualStudio::Utilities::IContentType ^ GetContentTypeForFileName(System::String ^ name);
public:
 Microsoft::VisualStudio::Utilities::IContentType ^ GetContentTypeForFileName(Platform::String ^ name);
Microsoft::VisualStudio::Utilities::IContentType GetContentTypeForFileName(std::wstring const & name);
public Microsoft.VisualStudio.Utilities.IContentType GetContentTypeForFileName (string name);
abstract member GetContentTypeForFileName : string -> Microsoft.VisualStudio.Utilities.IContentType
Public Function GetContentTypeForFileName (name As String) As IContentType

Parameters

name
String

The file name. It cannot be null.

Returns

The IContentType associated with this name. If no association exists, it returns the "unknown" content type. It never returns null.

Remarks

This method attempts to determine the IContentType of the file based on the information available. For best results, use GetContentTypeForFilePath(String).

Applies to