NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeReturnValueStatement.ReturnValue

Gets the return value object.

[Visual Basic]
Property ReturnValue As Object
[C#]
object ReturnValue {get; set;}
[C++]
Object* get_ReturnValue() = 0;void set_ReturnValue(Object*) = 0;
[JScript]
abstract function get ReturnValue() : Object;
public abstract function set ReturnValue(Object);

Property Value

An object that represents the return value.

Remarks

The return value type will be used by deafult as the return type of a method or property declaration, or else as the value of a parameter in method invokes. The documentation for ICodeSourceFile has information regarding the valid values for this property.

See Also

ICodeReturnValueStatement Interface | ICodeReturnValueStatement Members | System.ComponentModel.Design.CodeModel Namespace | ICodeSourceFile