TypeConverter.GetCreateInstanceSupported 메서드
정의
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다.Returns whether changing a value on this object requires a call to the CreateInstance(IDictionary) method to create a new value.
오버로드
GetCreateInstanceSupported() |
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다.Returns whether changing a value on this object requires a call to the CreateInstance(IDictionary) method to create a new value. |
GetCreateInstanceSupported(ITypeDescriptorContext) |
이 개체의 값을 변경할 때 CreateInstance(IDictionary)를 호출하여 지정된 컨텍스트로 새 값을 만들어야 하는지 여부를 반환합니다.Returns whether changing a value on this object requires a call to CreateInstance(IDictionary) to create a new value, using the specified context. |
GetCreateInstanceSupported()
이 개체의 값을 변경할 때 CreateInstance(IDictionary) 메서드를 호출하여 새 값을 만들어야 하는지 여부를 반환합니다.Returns whether changing a value on this object requires a call to the CreateInstance(IDictionary) method to create a new value.
public:
bool GetCreateInstanceSupported();
public bool GetCreateInstanceSupported ();
member this.GetCreateInstanceSupported : unit -> bool
Public Function GetCreateInstanceSupported () As Boolean
반환
이 개체의 속성을 변경할 때 CreateInstance(IDictionary)를 호출하여 새 값을 만들어야 하면 true
이고, 그렇지 않으면 false
입니다.true
if changing a property on this object requires a call to CreateInstance(IDictionary) to create a new value; otherwise, false
.
GetCreateInstanceSupported(ITypeDescriptorContext)
이 개체의 값을 변경할 때 CreateInstance(IDictionary)를 호출하여 지정된 컨텍스트로 새 값을 만들어야 하는지 여부를 반환합니다.Returns whether changing a value on this object requires a call to CreateInstance(IDictionary) to create a new value, using the specified 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입니다.An ITypeDescriptorContext that provides a format context.
반환
이 개체의 속성을 변경할 때 CreateInstance(IDictionary)를 호출하여 새 값을 만들어야 하면 true
이고, 그렇지 않으면 false
입니다.true
if changing a property on this object requires a call to CreateInstance(IDictionary) to create a new value; otherwise, false
.
설명
이 클래스에서 구현될 때 이 메서드는 항상 false
를 반환합니다.As implemented in this class, this method always returns false
.
상속자 참고
변환 하려는 형식에서 해당 값을 변경 하려면 개체 다시 만들어야 하는 경우이 메서드를 재정의 합니다.Override this method if the type you want to convert must re-create the object to change its value.
이 변환기가 호출되는 환경에 대한 추가 정보를 추출하려면 context
매개 변수를 사용합니다.Use the context
parameter to extract additional information about the environment from which this converter is invoked. 이 매개 변수 수 null
항상 확인 합니다.This parameter can be null
, so always check it. 또한 컨텍스트 개체의 속성은 null
을 반환할 수도 있습니다.Also, properties on the context object can return null
.