diff options
| author | Robert Greig <rgreig@apache.org> | 2007-02-28 11:08:39 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-02-28 11:08:39 +0000 |
| commit | efe99f5843b9aa7c90a4425cba6c9ee0f822fe08 (patch) | |
| tree | fb875950080433492bf6e066b0e8a73df67bf8e9 /dotnet/Qpid.Messaging | |
| parent | a707cad8e7bf0e7e5dc9725d2d08e63456dcb82d (diff) | |
| download | qpid-python-efe99f5843b9aa7c90a4425cba6c9ee0f822fe08.tar.gz | |
(Patch submitted by Rupert Smith) dotnet_iop.diff.
Implements interop tests compatable with the existing topic tests. Used to succesfully test the field table changes.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@512700 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Messaging')
| -rw-r--r-- | dotnet/Qpid.Messaging/IHeaders.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dotnet/Qpid.Messaging/IHeaders.cs b/dotnet/Qpid.Messaging/IHeaders.cs index 1a0d187c67..aa2d0278f7 100644 --- a/dotnet/Qpid.Messaging/IHeaders.cs +++ b/dotnet/Qpid.Messaging/IHeaders.cs @@ -20,6 +20,17 @@ */ namespace Qpid.Messaging { + /// <summary> + /// IHeaders represents the header fields of an AMQ message and provides methods to access those fields. There are accessor methods to + /// get and set each header field for each supported header field data type. + /// + /// <para/><table id="crc"><caption>CRC Card</caption> + /// <tr><th>Responsibilities</th></tr> + /// <tr><td>Provide accessors for all supported header field types.</td></tr> + /// <tr><td>Check if a set of headers contains a named property.</td></tr> + /// </table> + /// + /// </summary> public interface IHeaders { bool Contains(string name); |
