ExportFileScannerAttribute 생성자

정의

오버로드

ExportFileScannerAttribute(String, String, String, Type)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

ExportFileScannerAttribute(String, String, String[], Type[])

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

ExportFileScannerAttribute(String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

ExportFileScannerAttribute(FileScannerOptions, String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

ExportFileScannerAttribute(FileScannerOptions, String, String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

ExportFileScannerAttribute(String, String, String, Type)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 ExportFileScannerAttribute(System::String ^ type, System::String ^ language, System::String ^ fileExtension, Type ^ supportedType);
public:
 ExportFileScannerAttribute(Platform::String ^ type, Platform::String ^ language, Platform::String ^ fileExtension, Platform::Type ^ supportedType);
public ExportFileScannerAttribute (string type, string language, string fileExtension, Type supportedType);
new Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute : string * string * string * Type -> Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute
Public Sub New (type As String, language As String, fileExtension As String, supportedType As Type)

매개 변수

type
String

이 IFileScannerMetadata의 고유 형식

language
String

이 스캐너가 적합한 파일의 종류를 설명하는 간단한 이름입니다.

fileExtension
String

이 스캐너가 구문 분석할 수 있는 파일 이름 또는 확장명(선행 기간 포함)입니다.

supportedType
Type

검사할 지원되는 형식

적용 대상

ExportFileScannerAttribute(String, String, String[], Type[])

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 ExportFileScannerAttribute(System::String ^ type, System::String ^ language, cli::array <System::String ^> ^ supportedFileExtensions, cli::array <Type ^> ^ supportedTypes);
public:
 ExportFileScannerAttribute(Platform::String ^ type, Platform::String ^ language, Platform::Array <Platform::String ^> ^ supportedFileExtensions, Platform::Array <Platform::Type ^> ^ supportedTypes);
public ExportFileScannerAttribute (string type, string language, string[] supportedFileExtensions, Type[] supportedTypes);
new Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute : string * string * string[] * Type[] -> Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute
Public Sub New (type As String, language As String, supportedFileExtensions As String(), supportedTypes As Type())

매개 변수

type
String

이 IFileScannerMetadata의 고유 형식

language
String

이 스캐너가 적합한 파일의 종류를 설명하는 간단한 이름입니다.

supportedFileExtensions
String[]

이 스캐너가 구문 분석할 수 있는 파일 이름 또는 확장명(선행 기간 포함)의 집합입니다.

supportedTypes
Type[]

이 파일 스캐너에서 지원하는 형식 목록

적용 대상

ExportFileScannerAttribute(String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 ExportFileScannerAttribute(System::String ^ type, System::String ^ language, cli::array <System::String ^> ^ supportedFileExtensions, cli::array <Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public:
 ExportFileScannerAttribute(Platform::String ^ type, Platform::String ^ language, Platform::Array <Platform::String ^> ^ supportedFileExtensions, Platform::Array <Platform::Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public ExportFileScannerAttribute (string type, string language, string[] supportedFileExtensions, Type[] supportedTypes, Microsoft.VisualStudio.Workspace.ProviderPriority priority);
new Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute : string * string * string[] * Type[] * Microsoft.VisualStudio.Workspace.ProviderPriority -> Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute
Public Sub New (type As String, language As String, supportedFileExtensions As String(), supportedTypes As Type(), priority As ProviderPriority)

매개 변수

type
String

이 IFileScannerMetadata의 고유 형식

language
String

이 스캐너가 적합한 파일의 종류를 설명하는 간단한 이름입니다.

supportedFileExtensions
String[]

이 스캐너가 구문 분석할 수 있는 파일 이름 또는 확장명(선행 기간 포함)의 집합입니다.

supportedTypes
Type[]

이 파일 스캐너에서 지원하는 형식 목록

priority
ProviderPriority

파일 스캐너 우선 순위

적용 대상

ExportFileScannerAttribute(FileScannerOptions, String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 ExportFileScannerAttribute(Microsoft::VisualStudio::Workspace::Indexing::FileScannerOptions options, System::String ^ type, System::String ^ language, cli::array <System::String ^> ^ supportedFileExtensions, cli::array <Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public:
 ExportFileScannerAttribute(Microsoft::VisualStudio::Workspace::Indexing::FileScannerOptions options, Platform::String ^ type, Platform::String ^ language, Platform::Array <Platform::String ^> ^ supportedFileExtensions, Platform::Array <Platform::Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public ExportFileScannerAttribute (Microsoft.VisualStudio.Workspace.Indexing.FileScannerOptions options, string type, string language, string[] supportedFileExtensions, Type[] supportedTypes, Microsoft.VisualStudio.Workspace.ProviderPriority priority);
new Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute : Microsoft.VisualStudio.Workspace.Indexing.FileScannerOptions * string * string * string[] * Type[] * Microsoft.VisualStudio.Workspace.ProviderPriority -> Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute
Public Sub New (options As FileScannerOptions, type As String, language As String, supportedFileExtensions As String(), supportedTypes As Type(), priority As ProviderPriority)

매개 변수

options
FileScannerOptions

FileScanner 옵션

type
String

이 IFileScannerMetadata의 고유 형식

language
String

이 스캐너가 적합한 파일의 종류를 설명하는 간단한 이름입니다.

supportedFileExtensions
String[]

이 스캐너가 구문 분석할 수 있는 파일 이름 또는 확장명(선행 기간 포함)의 집합입니다.

supportedTypes
Type[]

이 파일 스캐너에서 지원하는 형식 목록

priority
ProviderPriority

파일 스캐너 우선 순위

적용 대상

ExportFileScannerAttribute(FileScannerOptions, String, String, String, String[], Type[], ProviderPriority)

ExportFileScannerAttribute 클래스의 새 인스턴스를 초기화합니다.

public:
 ExportFileScannerAttribute(Microsoft::VisualStudio::Workspace::Indexing::FileScannerOptions options, System::String ^ version, System::String ^ type, System::String ^ language, cli::array <System::String ^> ^ supportedFileExtensions, cli::array <Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public:
 ExportFileScannerAttribute(Microsoft::VisualStudio::Workspace::Indexing::FileScannerOptions options, Platform::String ^ version, Platform::String ^ type, Platform::String ^ language, Platform::Array <Platform::String ^> ^ supportedFileExtensions, Platform::Array <Platform::Type ^> ^ supportedTypes, Microsoft::VisualStudio::Workspace::ProviderPriority priority);
public ExportFileScannerAttribute (Microsoft.VisualStudio.Workspace.Indexing.FileScannerOptions options, string version, string type, string language, string[] supportedFileExtensions, Type[] supportedTypes, Microsoft.VisualStudio.Workspace.ProviderPriority priority);
new Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute : Microsoft.VisualStudio.Workspace.Indexing.FileScannerOptions * string * string * string * string[] * Type[] * Microsoft.VisualStudio.Workspace.ProviderPriority -> Microsoft.VisualStudio.Workspace.Indexing.ExportFileScannerAttribute
Public Sub New (options As FileScannerOptions, version As String, type As String, language As String, supportedFileExtensions As String(), supportedTypes As Type(), priority As ProviderPriority)

매개 변수

options
FileScannerOptions

FileScanner 옵션

version
String

이 공급자의 버전

type
String

이 IFileScannerMetadata의 고유 형식

language
String

이 스캐너가 적합한 파일의 종류를 설명하는 간단한 이름입니다.

supportedFileExtensions
String[]

이 스캐너가 구문 분석할 수 있는 파일 이름 또는 확장명(선행 기간 포함)의 집합입니다.

supportedTypes
Type[]

이 파일 스캐너에서 지원하는 형식 목록

priority
ProviderPriority

파일 스캐너 우선 순위

적용 대상