Proprietà IFuncInfo.ReturnType

Ottiene o imposta una stringa che contiene il tipo restituito dalla funzione.

Spazio dei nomi:  Microsoft.VisualStudio.VsWizard
Assembly:  Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)

Sintassi

'Dichiarazione
Property ReturnType As String
string ReturnType { get; set; }
property String^ ReturnType {
    String^ get ();
    void set (String^ value);
}
abstract ReturnType : string with get, set
function get ReturnType () : String
function set ReturnType (value : String)

Valore proprietà

Tipo: System.String
Stringa contenente il tipo restituito della funzione.

Esempi

var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strReturnType = oFunction.ReturnType;

Sicurezza di .NET Framework

Vedere anche

Riferimenti

IFuncInfo Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VsWizard