EditorFactory.IsOurFileFormat Method
Checks whether there is an editor that can handle this extension.
Namespace: Microsoft.VisualStudio.Package
Assemblies: Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)
Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
Syntax
'宣言
Public Overridable Function IsOurFileFormat ( _
moniker As String _
) As Boolean
public virtual bool IsOurFileFormat(
string moniker
)
Parameters
- moniker
Type: System.String
The extension for which an editor is desired.
Return Value
Type: System.Boolean
By default returns true. Implementations should override this method to handle their own file formats.
Remarks
Notes to Inheritors
This method is called when the user has not explicitly requested a known editor, the file extension does not match a registered extension, and the wildcard extension "*" has been registered. Return true if there is a registered editor, otherwise false. Visual Studio will find the next best editor in the list.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.