IFuncInfo.InvokeKind Property
Gets or sets a value of tagINVOKEKIND enumeration.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
Property InvokeKind As String
string InvokeKind { get; set; }
property String^ InvokeKind {
String^ get ();
void set (String^ value);
}
abstract InvokeKind : string with get, set
function get InvokeKind () : String
function set InvokeKind (value : String)
Property Value
Type: System.String
A tagINVOKEKIND enumeration.
Remarks
InvokeKind returns a value of tagINVOKEKIND enumeration, which specifies the function invocation syntax.
Examples
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
var strInvK = oFunction.InvokeKind;
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.