ImageGenerationResponse 생성자

정의

오버로드

Name Description
ImageGenerationResponse()

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

ImageGenerationResponse(IList<AIContent>)

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

ImageGenerationResponse()

Source:
ImageGenerationResponse.cs

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

public:
 ImageGenerationResponse();
[System.Text.Json.Serialization.JsonConstructor]
public ImageGenerationResponse();
Public Sub New ()
특성

적용 대상

ImageGenerationResponse(IList<AIContent>)

Source:
ImageGenerationResponse.cs

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

public:
 ImageGenerationResponse(System::Collections::Generic::IList<Microsoft::Extensions::AI::AIContent ^> ^ contents);
public ImageGenerationResponse(System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent>? contents);
new Microsoft.Extensions.AI.ImageGenerationResponse : System.Collections.Generic.IList<Microsoft.Extensions.AI.AIContent> -> Microsoft.Extensions.AI.ImageGenerationResponse
Public Sub New (contents As IList(Of AIContent))

매개 변수

contents
IList<AIContent>

이 응답의 내용입니다.

적용 대상