[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++  
public 
bool 
OverrideValidityChecks { 
get; 
set; }
Public 
Property 
OverrideValidityChecks 
As 
Boolean
	
Get
	
Set
public:
virtual 
property 
bool 
OverrideValidityChecks {
	
bool 
get () 
sealed;
	
void 
set (
bool 
value) 
sealed;
}

Field Value

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

Implements

IMessageSettings . . :: . . OverrideValidityChecks

Remarks

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

See Also