ArcFM Responder Mobile Developer Guide
Require(Boolean,String,Exception) Method






Precondition check - should run regardless of preprocessor directives.
Syntax
'Declaration
 
Public Overloads Shared Sub Require( _
   ByVal assertion As System.Boolean, _
   ByVal message As System.String, _
   ByVal inner As System.Exception _
) 
'Usage
 
Dim assertion As System.Boolean
Dim message As System.String
Dim inner As System.Exception
 
Check.Require(assertion, message, inner)
public static void Require( 
   System.bool assertion,
   System.string message,
   System.Exception inner
)
public procedure Require( 
    assertion: System.Boolean;
    message: System.String;
    inner: System.Exception
); static; 
public static function Require( 
   assertion : System.boolean,
   message : System.String,
   inner : System.Exception
);
public: static void Require( 
   System.bool assertion,
   System.string* message,
   System.Exception* inner
) 
public:
static void Require( 
   System.bool assertion,
   System.String^ message,
   System.Exception^ inner
) 

Parameters

assertion
message
inner
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Check Class
Check Members
Overload List

Send Feedback