다음을 통해 공유


LuisApplication 생성자

정의

오버로드

LuisApplication()

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

LuisApplication(LuisService)
사용되지 않음.

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

LuisApplication(String)

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

LuisApplication(String, String, String)

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

LuisApplication()

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

public LuisApplication ();
Public Sub New ()

적용 대상

LuisApplication(LuisService)

주의

The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.

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

[System.Obsolete("The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.", false)]
public LuisApplication (Microsoft.Bot.Configuration.LuisService service);
[<System.Obsolete("The LuisService class is obsolete and it will be removed in a future version of the framework, use LuisApplication(string applicationId, string endpointKey, string endpoint) instead.", false)>]
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : Microsoft.Bot.Configuration.LuisService -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (service As LuisService)

매개 변수

service
LuisService

LUIS 구성.

특성

적용 대상

LuisApplication(String)

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

public LuisApplication (string applicationEndpoint);
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : string -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (applicationEndpoint As String)

매개 변수

applicationEndpoint
String

LUIS 애플리케이션 엔드포인트.

적용 대상

LuisApplication(String, String, String)

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

public LuisApplication (string applicationId, string endpointKey, string endpoint);
new Microsoft.Bot.Builder.AI.Luis.LuisApplication : string * string * string -> Microsoft.Bot.Builder.AI.Luis.LuisApplication
Public Sub New (applicationId As String, endpointKey As String, endpoint As String)

매개 변수

applicationId
String

LUIS 애플리케이션 ID입니다.

endpointKey
String

LUIS 구독 또는 엔드포인트 키.

endpoint
String

와 같이 https://westus.api.cognitive.microsoft.com사용할 LUIS 엔드포인트입니다.

적용 대상