[TIBCO.EMS .NET Admin client library 7.0 documentation]

Destroy the destination bridge between a source and a target

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public void DestroyDestinationBridge(
	DestinationType sourceType,
	string sourceName,
	DestinationType targetType,
	string targetName
)
Public Sub DestroyDestinationBridge ( _
	sourceType As DestinationType, _
	sourceName As String, _
	targetType As DestinationType, _
	targetName As String _
)
public:
void DestroyDestinationBridge(
	DestinationType sourceType, 
	String^ sourceName, 
	DestinationType targetType, 
	String^ targetName
)

Parameters

sourceType
Type: TIBCO.EMS.ADMIN..::.DestinationType
the type of the source destination, either DestinationType.Queue or DestinationType.Topic
sourceName
Type: System..::.String
the name of the source destination
targetType
Type: TIBCO.EMS.ADMIN..::.DestinationType
the type of the target destination, either DestinationType.Queue or DestinationType.Topic
targetName
Type: System..::.String
the name of the target destination

Exceptions

ExceptionCondition
TIBCO.EMS.ADMIN..::.AdminExceptionif not authorized or some other error occurred
TIBCO.EMS.ADMIN..::.AdminInvalidNameExceptionif the source our target names or types are not valid

See Also