Skip to content

Commit a7be9b8

Browse files
Correct crefs
1 parent 742feb5 commit a7be9b8

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

projects/client/RabbitMQ.Client/src/client/api/IBasicProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public interface IBasicProperties : IContentHeader
6868
///<summary> MIME content encoding </summary>
6969
string ContentEncoding { get; set; }
7070

71-
///<summary> message header field table. Is of type <see cref="T:System.Collections.Generic.IDictionary{String,Object}" />.</summary>
71+
///<summary> message header field table. Is of type <see cref="System.Collections.Generic.IDictionary{TKey,TValue}" />.</summary>
7272
IDictionary<string, object> Headers { get; set; }
7373

7474
///<summary> non-persistent (1) or persistent (2) </summary>

projects/client/RabbitMQ.Client/src/client/api/Protocols.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public static IProtocol Lookup(string name)
148148
/// not exist, a ConfigurationErrorsException will be thrown.
149149
///</para>
150150
///</remarks>
151-
///<exception cref="T:System.Configuration.ConfigurationErrorsException"/>
151+
///<exception cref="System.Configuration.ConfigurationErrorsException"/>
152152
public static IProtocol SafeLookup(string name)
153153
{
154154
if (name != null)
@@ -179,7 +179,7 @@ private static string ReadEnvironmentVariable()
179179
///Protocols.DefaultProtocol is used. If the protocol variant
180180
///named is not found, ConfigurationErrorsException is thrown.
181181
///</remarks>
182-
///<exception cref="T:System.Configuration.ConfigurationErrorsException"/>
182+
///<exception cref="System.Configuration.ConfigurationErrorsException"/>
183183
public static IProtocol FromEnvironmentVariable()
184184
{
185185
return SafeLookup(ReadEnvironmentVariable());
@@ -192,7 +192,7 @@ public static IProtocol FromEnvironmentVariable()
192192
///Protocols.DefaultProtocol is used. If the protocol variant
193193
///named is not found, ConfigurationErrorsException is thrown.
194194
///</remarks>
195-
///<exception cref="T:System.Configuration.ConfigurationErrorsException"/>
195+
///<exception cref="System.Configuration.ConfigurationErrorsException"/>
196196
public static IProtocol FromConfiguration(string appSettingsKey)
197197
{
198198
string name = ConfigurationManager.AppSettings[appSettingsKey];
@@ -208,7 +208,7 @@ public static IProtocol FromConfiguration()
208208
///<summary>Tries FromConfiguration() first, followed by
209209
///FromEnvironmentVariable() if no setting was found in the
210210
///App.config.</summary>
211-
///<exception cref="T:System.Configuration.ConfigurationErrorsException"/>
211+
///<exception cref="System.Configuration.ConfigurationErrorsException"/>
212212
public static IProtocol FromEnvironment(string appSettingsKey)
213213
{
214214
string name = ConfigurationManager.AppSettings[appSettingsKey];

projects/client/RabbitMQ.Client/src/client/content/IMessageBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public interface IMessageBuilder {
5858
string GetDefaultContentType();
5959

6060
///<summary>Retrieves the dictionary that will be used to
61-
///construct the message header table. It is of type <see cref="T:System.Collections.Generic.IDictionary{String,Object}" /></summary>
61+
///construct the message header table. It is of type <see cref="System.Collections.Generic.IDictionary{TKey,TValue}" /></summary>
6262
IDictionary<string, object> Headers { get; }
6363

6464
///<summary>Retrieve the Stream being used to construct the message body.</summary>

projects/client/RabbitMQ.Client/src/client/content/IMessageReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace RabbitMQ.Client.Content {
5151
///</remarks>
5252
public interface IMessageReader {
5353
///<summary>Retrieves the content header properties of the
54-
///message being read. Is of type <seealso cref="IDictionary{string, object}"/></summary>
54+
///message being read. Is of type <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/></summary>
5555
IDictionary<string, object> Headers { get; }
5656

5757
///<summary>Retrieve the message body, as a byte array.</summary>

projects/client/RabbitMQ.Client/src/client/content/MapWireFormatting.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ public static IDictionary<string, object> ReadMap(NetworkBinaryReader reader) {
7070
return table;
7171
}
7272

73-
/// <param name="writer">Type is <seealso cref="T:RabbitMQ.Util.NetworkBinaryWriter"/>.</param>
74-
/// <param name="table">Type is <seealso cref="T:System.Collections.Generic.IDictionary{string, object}"/>.</param>
73+
/// <param name="writer">Type is <seealso cref="RabbitMQ.Util.NetworkBinaryWriter"/>.</param>
74+
/// <param name="table">Type is <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/>.</param>
7575
public static void WriteMap(NetworkBinaryWriter writer, IDictionary<string, object> table) {
7676
int entryCount = table.Count;
7777
BytesWireFormatting.WriteInt32(writer, entryCount);

projects/client/RabbitMQ.Client/src/client/impl/ContentHeaderPropertyReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public ulong ReadLonglong()
130130
return WireFormatting.ReadLonglong(m_reader);
131131
}
132132

133-
/// <returns>A type of <seealso cref="T:System.Collections.Generic.IDictionary{string, object}"/>.</returns>
133+
/// <returns>A type of <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/>.</returns>
134134
public IDictionary<string, object> ReadTable()
135135
{
136136
return WireFormatting.ReadTable(m_reader);

projects/client/RabbitMQ.Client/src/client/impl/WireFormatting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public static decimal ReadDecimal(NetworkBinaryReader reader)
115115
/// and F, as well as the QPid-0-8 specific b, d, f, l, s, t,
116116
/// x and V types and the AMQP 0-9-1 A type.
117117
///</remarks>
118-
/// <returns>A <seealso cref="T:System.Collections.Generic.IDictionary{string, object}"/>.</returns>
118+
/// <returns>A <seealso cref="System.Collections.Generic.IDictionary{TKey,TValue}"/>.</returns>
119119
public static IDictionary<string, object> ReadTable(NetworkBinaryReader reader)
120120
{
121121
Dictionary<string, object> table = new Dictionary<string, object>();

0 commit comments

Comments
 (0)