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)

Syntax

声明
Property MustImplement As Boolean
用法
Dim instance As VCCodeFunction
Dim value As Boolean

value = instance.MustImplement

instance.MustImplement = value
bool MustImplement { get; set; }
property bool MustImplement {
    bool get ();
    void set (bool value);
}
function get MustImplement () : boolean
function set MustImplement (value : boolean)

Property Value

Type: System.Boolean

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

Remarks

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.

Permissions

See Also

Concepts

How to: Compile and Run the Automation Object Model Code Examples

Reference

VCCodeFunction Interface

VCCodeFunction Members

Microsoft.VisualStudio.VCCodeModel Namespace