C# Class IServiceOriented.ServiceBus.Delivery.MsmqMessageDeliveryQueue

Inheritance: IMessageDeliveryQueue, IDisposable
Afficher le fichier Open project: jezell/iserviceoriented

Méthodes publiques

Méthode Description
Create ( string path ) : void

Create a message queue

Delete ( string path ) : void

Delete a message queue

Dequeue ( System.TimeSpan timeout ) : MessageDelivery
Dequeue ( string id, System.TimeSpan timeout ) : MessageDelivery
Dispose ( ) : void
Enqueue ( MessageDelivery value ) : void
Exists ( string path ) : bool

Determines if a message queue with the specified path exists

ListMessages ( ) : IEnumerable
MsmqMessageDeliveryQueue ( System.Messaging.MessageQueue queue, IMessageFormatter formatter ) : System
MsmqMessageDeliveryQueue ( string path, IMessageFormatter formatter ) : System
MsmqMessageDeliveryQueue ( string path, MessageQueueTransactionType transactionType, IMessageFormatter formatter ) : System
MsmqMessageDeliveryQueue ( string path, bool createIfNotExists, IMessageFormatter formatter ) : System
Peek ( System.TimeSpan timeout ) : MessageDelivery

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Private Methods

Méthode Description
createMessage ( MessageDelivery value ) : System.Messaging.Message
createObject ( System message ) : MessageDelivery

Method Details

Create() public static méthode

Create a message queue
public static Create ( string path ) : void
path string
Résultat void

Delete() public static méthode

Delete a message queue
public static Delete ( string path ) : void
path string
Résultat void

Dequeue() public méthode

public Dequeue ( System.TimeSpan timeout ) : MessageDelivery
timeout System.TimeSpan
Résultat MessageDelivery

Dequeue() public méthode

public Dequeue ( string id, System.TimeSpan timeout ) : MessageDelivery
id string
timeout System.TimeSpan
Résultat MessageDelivery

Dispose() public méthode

public Dispose ( ) : void
Résultat void

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Enqueue() public méthode

public Enqueue ( MessageDelivery value ) : void
value MessageDelivery
Résultat void

Exists() public static méthode

Determines if a message queue with the specified path exists
public static Exists ( string path ) : bool
path string
Résultat bool

ListMessages() public méthode

public ListMessages ( ) : IEnumerable
Résultat IEnumerable

MsmqMessageDeliveryQueue() public méthode

public MsmqMessageDeliveryQueue ( System.Messaging.MessageQueue queue, IMessageFormatter formatter ) : System
queue System.Messaging.MessageQueue
formatter IMessageFormatter
Résultat System

MsmqMessageDeliveryQueue() public méthode

public MsmqMessageDeliveryQueue ( string path, IMessageFormatter formatter ) : System
path string
formatter IMessageFormatter
Résultat System

MsmqMessageDeliveryQueue() public méthode

public MsmqMessageDeliveryQueue ( string path, MessageQueueTransactionType transactionType, IMessageFormatter formatter ) : System
path string
transactionType MessageQueueTransactionType
formatter IMessageFormatter
Résultat System

MsmqMessageDeliveryQueue() public méthode

public MsmqMessageDeliveryQueue ( string path, bool createIfNotExists, IMessageFormatter formatter ) : System
path string
createIfNotExists bool
formatter IMessageFormatter
Résultat System

Peek() public méthode

public Peek ( System.TimeSpan timeout ) : MessageDelivery
timeout System.TimeSpan
Résultat MessageDelivery