VCCodeFunction::MustImplement Property

 

Gets or sets a value indicating whether or not the item is declared abstract and thus requires an implementation.

Namespace:   Microsoft.VisualStudio.VCCodeModel
Assembly:  Microsoft.VisualStudio.VCCodeModel (in Microsoft.VisualStudio.VCCodeModel.dll)

property bool MustImplement {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the method is declared abstract and thus requires an implementation; false if otherwise.

MustImplement returns or sets whether the method is implemented or requires an implementation in subclasses. For some languages this might always be false, and that setting MustImplement might fail, depending on the language.

Return to top
Show: