Dreamine.MVVM.Generators 1.0.13
Dreamine.MVVM.Generators 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet 클래스 참조sealed

Attribute 심볼 집합을 나타냅니다. 더 자세히 ...

Public 멤버 함수

 AttributeSymbolSet (INamedTypeSymbol? modelAttribute, INamedTypeSymbol? eventAttribute, INamedTypeSymbol? propertyAttribute)
 AttributeSymbolSet 클래스의 새 인스턴스를 초기화합니다.

속성

INamedTypeSymbol? ModelAttribute [get]
 Model Attribute 심볼을 가져옵니다.
INamedTypeSymbol? EventAttribute [get]
 Event Attribute 심볼을 가져옵니다.
INamedTypeSymbol? PropertyAttribute [get]
 Property Attribute 심볼을 가져옵니다.
bool IsIncomplete [get]
 필수 심볼이 모두 준비되었는지 여부를 가져옵니다.

상세한 설명

Attribute 심볼 집합을 나타냅니다.

DreamineAutoWiringGenerator.cs 파일의 447 번째 라인에서 정의되었습니다.

생성자 & 소멸자 문서화

◆ AttributeSymbolSet()

Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet.AttributeSymbolSet ( INamedTypeSymbol? modelAttribute,
INamedTypeSymbol? eventAttribute,
INamedTypeSymbol? propertyAttribute )
inline

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

매개변수
modelAttributeModel Attribute 심볼입니다.
eventAttributeEvent Attribute 심볼입니다.
propertyAttributeProperty Attribute 심볼입니다.

DreamineAutoWiringGenerator.cs 파일의 455 번째 라인에서 정의되었습니다.

459 {
460 ModelAttribute = modelAttribute;
461 EventAttribute = eventAttribute;
462 PropertyAttribute = propertyAttribute;
463 }

다음을 참조함 : EventAttribute, ModelAttribute, PropertyAttribute.

속성 문서화

◆ EventAttribute

INamedTypeSymbol? Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet.EventAttribute
get

Event Attribute 심볼을 가져옵니다.

DreamineAutoWiringGenerator.cs 파일의 473 번째 라인에서 정의되었습니다.

473{ get; }

다음에 의해서 참조됨 : AttributeSymbolSet().

◆ IsIncomplete

bool Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet.IsIncomplete
get

필수 심볼이 모두 준비되었는지 여부를 가져옵니다.

DreamineAutoWiringGenerator.cs 파일의 483 번째 라인에서 정의되었습니다.

484 {
485 get
486 {
487 return ModelAttribute is null ||
488 EventAttribute is null ||
489 PropertyAttribute is null;
490 }
491 }

다음에 의해서 참조됨 : Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.TryCreateCandidate().

◆ ModelAttribute

INamedTypeSymbol? Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet.ModelAttribute
get

Model Attribute 심볼을 가져옵니다.

DreamineAutoWiringGenerator.cs 파일의 468 번째 라인에서 정의되었습니다.

468{ get; }

다음에 의해서 참조됨 : AttributeSymbolSet().

◆ PropertyAttribute

INamedTypeSymbol? Dreamine.MVVM.Generators.DreamineAutoWiringGenerator.AttributeSymbolSet.PropertyAttribute
get

Property Attribute 심볼을 가져옵니다.

DreamineAutoWiringGenerator.cs 파일의 478 번째 라인에서 정의되었습니다.

478{ get; }

다음에 의해서 참조됨 : AttributeSymbolSet().


이 클래스에 대한 문서화 페이지는 다음의 파일로부터 생성되었습니다.: