InternalRemotingServices.RemotingAssert(Boolean, String) Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Instructs an internal debugger to check for a condition and display a message if the condition is false.
public:
 static void RemotingAssert(bool condition, System::String ^ message);[System.Diagnostics.Conditional("_DEBUG")]
public static void RemotingAssert(bool condition, string message);[<System.Diagnostics.Conditional("_DEBUG")>]
static member RemotingAssert : bool * string -> unitPublic Shared Sub RemotingAssert (condition As Boolean, message As String)Parameters
- condition
- Boolean
true to prevent a message from being displayed; otherwise, false.
- message
- String
The message to display if condition is false.
- Attributes
Remarks
You do not need to call the static methods of the InternalRemotingServices class.
A "_DEBUG" preprocessing symbol is applied to the method by means of the ConditionalAttribute attribute.