Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Gets or sets a string containing the return type for the function.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (in Microsoft.VisualStudio.VsWizard.dll)
Syntax
'Declaration
Property ReturnType As String
'Usage
Dim instance As IFuncInfo
Dim value As String
value = instance.ReturnType
instance.ReturnType = value
string ReturnType { get; set; }
property String^ ReturnType {
String^ get ();
void set (String^ value);
}
function get ReturnType () : String
function set ReturnType (value : String)
Property Value
Type: System.String
A string containing the return type for the function.
Examples
var oInterface = window.external.ParentObject;
var oFunction = oInterface.Functions(PROPERTY_NAME.value);
Var strReturnType = oFunction.ReturnType;
.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.