Dela via


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

'Declaration
Property MustImplement As Boolean
'Usage
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.

.NET Framework Security

See Also

Reference

VCCodeFunction Interface

VCCodeFunction Members

Microsoft.VisualStudio.VCCodeModel Namespace

Other Resources

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