  | JsonRpcParameterAttributeIsOptional Property  | 
 [This is preliminary documentation and is subject to change.]
            Whether the parameter is optional.
            
 
    Namespace: 
   JsonRpc.Contracts
    Assembly:
   JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntaxpublic Nullable<bool> IsOptional { get; set; }Public Property IsOptional As Nullable(Of Boolean)
	Get
	Set
Dim instance As JsonRpcParameterAttribute
Dim value As Nullable(Of Boolean)
value = instance.IsOptional
instance.IsOptional = value
public:
property Nullable<bool> IsOptional {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}member IsOptional : Nullable<bool> with get, set
Property Value
Type: 
NullableBoolean
            If the value is 
null, the default behavior (whether CLR parameter is optional or not)
            will be used.
            
See Also