CodeGenerationOptions 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XML Web services 사용을 위해 .NET 형식을 생성할 때 사용할 다양한 옵션을 지정합니다.
이 열거형은 멤버 값의 비트 조합을 지원합니다.
public enum class CodeGenerationOptions
[System.Flags]
public enum CodeGenerationOptions
[<System.Flags>]
type CodeGenerationOptions =
Public Enum CodeGenerationOptions
- 상속
- 특성
필드
EnableDataBinding | 16 | 데이터 바인딩을 활성화합니다. |
GenerateNewAsync | 2 | 웹 메서드의 비동기 호출에 대한 이벤트를 만듭니다. |
GenerateOldAsync | 4 | 웹 메서드의 비동기 호출에 대한 Begin 및 End 메서드를 만듭니다. |
GenerateOrder | 8 |
XmlAnyElementAttribute, XmlArrayAttribute 및 XmlElementAttribute 특성의 |
GenerateProperties | 1 | 속성별 기본 형식을 나타냅니다. |
None | 0 | 필드별 기본 형식과 System 네임스페이스 형식별 기본 형식을 나타냅니다. |
예제
다음 예제에서는 열거형을 CodeGenerationOptions
사용하여 개체의 ServiceDescriptionImporter 동작을 지정하는 방법을 보여 줍니다.
// Generate properties to represent primitive values.
importer->CodeGenerationOptions = System::Xml::Serialization::CodeGenerationOptions::GenerateProperties;
// Generate properties to represent primitive values.
importer.CodeGenerationOptions = System.Xml.Serialization.CodeGenerationOptions.GenerateProperties;
설명
이 API에 대한 자세한 내용은 CodeGenerationOptions에 대한 추가 API 설명을 참조하세요.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET