1 write to _receiveQuery
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (1)
161
_receiveQuery
= "WAITFOR(RECEIVE TOP (1) message_type_name, conversation_handle, cast(message_body AS XML) as message_body from " + _escapedQueueName + "), TIMEOUT @p2;";
4 references to _receiveQuery
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (4)
172
_com.CommandText =
_receiveQuery
;
174
_concatQuery = _endConversationQuery +
_receiveQuery
;
445
_beginConversationQuery= "BEGIN CONVERSATION TIMER ('"+_dialogHandle+"') TIMEOUT = 120; " +
_receiveQuery
;
582
_com.CommandText = (null != _beginConversationQuery) ? _beginConversationQuery :
_receiveQuery
; // If we're doing the initial query, we won't have a conversation Guid to begin yet.