ReceiveStatement Class

Represents the RECEIVE statement.

Inheritance Hierarchy

System.Object
  Microsoft.SqlServer.TransactSql.ScriptDom.TSqlFragment
    Microsoft.SqlServer.TransactSql.ScriptDom.TSqlStatement
      Microsoft.SqlServer.TransactSql.ScriptDom.WaitForSupportedStatement
        Microsoft.SqlServer.TransactSql.ScriptDom.ReceiveStatement

Namespace:  Microsoft.SqlServer.TransactSql.ScriptDom
Assembly:  Microsoft.SqlServer.TransactSql.ScriptDom (in Microsoft.SqlServer.TransactSql.ScriptDom.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public Class ReceiveStatement _
    Inherits WaitForSupportedStatement
'Usage
Dim instance As ReceiveStatement
[SerializableAttribute]
public class ReceiveStatement : WaitForSupportedStatement
[SerializableAttribute]
public ref class ReceiveStatement : public WaitForSupportedStatement
[<SerializableAttribute>]
type ReceiveStatement =  
    class 
        inherit WaitForSupportedStatement 
    end
public class ReceiveStatement extends WaitForSupportedStatement

The ReceiveStatement type exposes the following members.

Constructors

  Name Description
Public method ReceiveStatement Initializes a new instance of the ReceiveStatement class.

Top

Properties

  Name Description
Public property FirstTokenIndex Gets or sets the first token index. (Inherited from TSqlFragment.)
Public property FragmentLength Gets the fragment length. (Inherited from TSqlFragment.)
Public property Into Gets or sets the table to select into the columns from received messages, optional.
Public property IsConversationGroupIdWhere Gets or sets a value that indicates whether a conversation group ID is specified in a WHERE clause. Meaningless if WHERE is nulla null reference (Nothing in Visual Basic).
Public property LastTokenIndex Gets or sets the last token index. (Inherited from TSqlFragment.)
Public property Queue Gets or sets the name of the queue to receive messages from.
Public property ScriptTokenStream Gets or sets a list of token streams. (Inherited from TSqlFragment.)
Public property SelectElements Gets or sets the selected columns or set variables, the strong types of objects that can be here are SelectColumn and SelectSetVariable.
Public property StartColumn Gets the starting column. (Inherited from TSqlFragment.)
Public property StartLine Gets the starting line. (Inherited from TSqlFragment.)
Public property StartOffset Gets the fragment start offset value. (Inherited from TSqlFragment.)
Public property Top Gets or sets the optional number of messages to return.
Public property Where Gets or sets the conversation or conversation group for received messages, optional.

Top

Methods

  Name Description
Public method Accept Accepts the visitor. (Overrides TSqlFragment.Accept(TSqlFragmentVisitor).)
Public method AcceptChildren Accepts the visitor for Children. (Overrides WaitForSupportedStatement.AcceptChildren(TSqlFragmentVisitor).)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.SqlServer.TransactSql.ScriptDom Namespace