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!

ArgumentOutOfRangeException.Message

Retrieves the message text for this exception or indicates an empty string if no message is set.

[Visual Basic]
Overridable Public ReadOnly Property Message As String
[C#]
public string Message {override get;}
[C++]
public: __property virtual String* get_Message();
[JScript]
public function get Message() : String;

Property Value

The ActualValue property retrieves the message text for this exception. The value of this property takes one of two forms:

Property Type Condition
If ActualValue is null Then it consists of the string passed to the constructor as the message.
If ActualValue is non-null Then it consists of the string passed to the constructor as the message with "Actual value was " followed by ActualValue:ToString() appended.

Remarks

Overrides Message.

See Also

ArgumentOutOfRangeException Class | ArgumentOutOfRangeException Members | System Namespace