RemoteAttribute.IsValid Method (Object)

This method always returns true.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

'Declaration
Public Overrides Function IsValid ( _
	value As Object _
) As Boolean
'Usage
Dim instance As RemoteAttribute 
Dim value As Object 
Dim returnValue As Boolean 

returnValue = instance.IsValid(value)

Parameters

value
Type: System.Object

The validation target.

Return Value

Type: System.Boolean
true

Remote attributes that derive from ValidationAttribute should return true for this method.

Show: