dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleQueueAdmin Class / AlterSubscriber Method / AlterSubscriber(String,String,String,String) Method
Subscriber's name.
Protocol-specific address of the subscriber. If the protocol is zero, the address is of the form [schema.]queue[@dblink].
A conditional expression based on the message properties, the message data properties and PL/SQL functions. The rule parameter cannot exceed 4000 characters. To eliminate the rule, set the rule parameter to NULL.
Specifies a transformation that will be applied when this subscriber dequeues the message.

In This Topic
    AlterSubscriber(String,String,String,String) Method
    In This Topic
    Alters existing properties of a subscriber to the specified queue.
    Syntax
    'Declaration
     
    Public Overloads Sub AlterSubscriber( _
       ByVal name As String, _
       ByVal address As String, _
       ByVal rule As String, _
       ByVal transformation As String _
    ) 
    public void AlterSubscriber( 
       string name,
       string address,
       string rule,
       string transformation
    )

    Parameters

    name
    Subscriber's name.
    address
    Protocol-specific address of the subscriber. If the protocol is zero, the address is of the form [schema.]queue[@dblink].
    rule
    A conditional expression based on the message properties, the message data properties and PL/SQL functions. The rule parameter cannot exceed 4000 characters. To eliminate the rule, set the rule parameter to NULL.
    transformation
    Specifies a transformation that will be applied when this subscriber dequeues the message.
    See Also