TypeConverter.GetCreateInstanceSupported 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다.
오버로드
GetCreateInstanceSupported() |
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다. |
GetCreateInstanceSupported(ITypeDescriptorContext) |
이 개체의 값을 변경하려는 경우 CreateInstance(IDictionary) 호출을 통해 지정된 컨텍스트를 사용하여 새 값을 만들어야 하는지 여부를 반환합니다. |
GetCreateInstanceSupported()
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다.
public:
bool GetCreateInstanceSupported();
public bool GetCreateInstanceSupported ();
member this.GetCreateInstanceSupported : unit -> bool
Public Function GetCreateInstanceSupported () As Boolean
반환
이 개체의 속성을 변경하려는 경우true
호출을 통해 새 값을 만들어야 하면 CreateInstance(IDictionary) 이고, 만들지 않아야 하면 false
입니다.
적용 대상
GetCreateInstanceSupported(ITypeDescriptorContext)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
이 개체의 값을 변경하려는 경우 CreateInstance(IDictionary) 호출을 통해 지정된 컨텍스트를 사용하여 새 값을 만들어야 하는지 여부를 반환합니다.
public:
virtual bool GetCreateInstanceSupported(System::ComponentModel::ITypeDescriptorContext ^ context);
public virtual bool GetCreateInstanceSupported (System.ComponentModel.ITypeDescriptorContext context);
public virtual bool GetCreateInstanceSupported (System.ComponentModel.ITypeDescriptorContext? context);
abstract member GetCreateInstanceSupported : System.ComponentModel.ITypeDescriptorContext -> bool
override this.GetCreateInstanceSupported : System.ComponentModel.ITypeDescriptorContext -> bool
Public Overridable Function GetCreateInstanceSupported (context As ITypeDescriptorContext) As Boolean
매개 변수
- context
- ITypeDescriptorContext
형식 컨텍스트를 제공하는 ITypeDescriptorContext입니다.
반환
이 개체의 속성을 변경하려는 경우true
호출을 통해 새 값을 만들어야 하면 CreateInstance(IDictionary) 이고, 만들지 않아야 하면 false
입니다.
설명
이 클래스에서 구현될 때 이 메서드는 항상 false
를 반환합니다.
상속자 참고
변환하려는 형식이 개체를 다시 만들어 값을 변경해야 하는 경우 이 메서드를 재정의합니다.
이 변환기가 호출되는 환경에 대한 추가 정보를 추출하려면 context
매개 변수를 사용합니다. 이 매개 변수 수 null
항상 확인 합니다. 또한 컨텍스트 개체의 속성은 null
을 반환할 수도 있습니다.
추가 정보
적용 대상
.NET