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.