A frontend message of an arbitrary type that has been pregenerated for efficiency - it is kept in byte[] form and doesn't have to be serialized for each send.
Inheritance: SimpleFrontendMessage
示例#1
0
 internal void ExecuteBlindSuppressTimeout(PregeneratedMessage message)
 {
     // Block the notification thread before writing anything to the wire.
     using (BlockNotifications())
     {
         SendSingleMessage(message);
         ReadPrependedMessageResponses();
         SkipUntil(BackendMessageCode.ReadyForQuery);
         State = ConnectorState.Ready;
     }
 }