[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Gets/sets the ability to override validity checking. If true, messages that have required properties that are null or empty will not fail to send.

Namespace:  Microsoft.ConfigurationManagement.Messaging.Framework
Assembly:  Microsoft.ConfigurationManagement.Messaging(in Microsoft.ConfigurationManagement.Messaging.dll)

Syntax

                 
  C#     Visual Basic     Visual C++  
bool 
OverrideValidityChecks { 
get; 
set; }
Property 
OverrideValidityChecks 
As 
Boolean
	
Get
	
Set
property 
bool 
OverrideValidityChecks {
	
bool 
get ();
	
void 
set (
bool 
value);
}

Field Value

Setting to true means validation will be skipped before sending message. It is not recommended to do this.

Remarks

It is not recommended that this be set to false except in the case of extreme performance optimization.

See Also