ExecutionInfoIsSchemaInAgreement Property  | 
 
            After a successful schema-altering query (ex: creating a table), the driver will check if
            the cluster's nodes agree on the new schema version. If not, it will keep retrying for a given
            delay (configurable via 
WithMaxSchemaAgreementWaitSeconds(Int32)).
            
            If this method returns 
, clients can call 
CheckSchemaAgreementAsync
            later to perform the check manually.
            
 
    Namespace: 
   Cassandra
    Assembly:
   Cassandra (in Cassandra.dll) Version: 3.10.0
Syntaxpublic bool IsSchemaInAgreement { get; }Property Value
Type: 
BooleanWhether the cluster had reached schema agreement after the execution of this query.
Return Value
Type: 
BooleanWhether the cluster reached schema agreement, or 
 for a non schema-altering statement.
RemarksNote that the schema agreement check is only performed for schema-altering queries For other
            query types, this method will always return 
.
See Also