diff options
| author | Tomas Restrepo <tomasr@apache.org> | 2007-05-17 23:50:50 +0000 |
|---|---|---|
| committer | Tomas Restrepo <tomasr@apache.org> | 2007-05-17 23:50:50 +0000 |
| commit | bc745c6e2e2dbc1e14e2cd8582be9d6995c8fb7f (patch) | |
| tree | 2e7e3a0a4213de2daf75870ce0579c73def35c89 /dotnet/Qpid.Messaging | |
| parent | b83eedda6337439bde05afef0790f6a70929db00 (diff) | |
| download | qpid-python-bc745c6e2e2dbc1e14e2cd8582be9d6995c8fb7f.tar.gz | |
* QPID-492 Fix Race condition in message decoding
* QPID-249 Make ServiceRequestingClient and ServiceProvidingClient a single, self contained test
* Fix incorrect exception message in Qpid.Buffers, improve tests
* Make ContentBody use an sliced buffer to avoid extra data copy
* Remove useless tests in Qpid.Client (Blocking IO tests)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@539178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Messaging')
| -rw-r--r-- | dotnet/Qpid.Messaging/IHeaders.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotnet/Qpid.Messaging/IHeaders.cs b/dotnet/Qpid.Messaging/IHeaders.cs index aa2d0278f7..edd0ef989b 100644 --- a/dotnet/Qpid.Messaging/IHeaders.cs +++ b/dotnet/Qpid.Messaging/IHeaders.cs @@ -35,7 +35,7 @@ namespace Qpid.Messaging { bool Contains(string name); - string this[string name] { get; set; } + object this[string name] { get; set; } bool GetBoolean(string name); void SetBoolean(string name, bool value); |
