Skip to content

Commit 01345f6

Browse files
authored
[Ambiguous][CS0419] references (#6510)
1 parent 8dbea8c commit 01345f6

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

src/core/Akka.Streams/Attributes.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public Attributes(params IAttribute[] attributes)
290290
/// The list is ordered with the most specific attribute first, least specific last.
291291
///
292292
/// Note that operators in general should not inspect the whole hierarchy but instead use
293-
/// <see cref="GetAttribute{TAttr}"/> to get the most specific attribute value.
293+
/// <see cref="GetAttribute{TAttr}(TAttr)"/> to get the most specific attribute value.
294294
/// </summary>
295295
public IEnumerable<IAttribute> AttributeList => _attributes;
296296

@@ -310,7 +310,7 @@ internal bool IsAsync
310310
/// Get all attributes of a given type (or subtypes thereof).
311311
///
312312
/// Note that operators in general should not inspect the whole hierarchy but instead use
313-
/// <see cref="GetAttribute{TAttr}"/> to get the most specific attribute value.
313+
/// <see cref="GetAttribute{TAttr}(TAttr)"/> to get the most specific attribute value.
314314
///
315315
/// The list is ordered with the most specific attribute first, least specific last.
316316
/// </summary>

src/core/Akka.Streams/Dsl/Framing.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public static Flow<ByteString, ByteString, NotUsed> LengthField(
107107
}
108108

109109
/// <summary>
110-
/// Returns a BidiFlow that implements a simple framing protocol. This is a convenience wrapper over <see cref="LengthField"/>
110+
/// Returns a BidiFlow that implements a simple framing protocol. This is a convenience wrapper over <see cref="LengthField(int, int, int, ByteOrder)"/>
111111
/// and simply attaches a length field header of four bytes (using big endian encoding) to outgoing messages, and decodes
112112
/// such messages in the inbound direction. The decoded messages do not contain the header.
113113
///

src/core/Akka.Streams/Dsl/Internal/InternalFlowOperations.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2568,7 +2568,7 @@ private static IGraph<FlowShape<TOut, TOut>, TMat> AlsoToGraph<TOut, TMat>(IGrap
25682568
/// elements that would've been sent to it will be dropped instead.
25692569
/// </para>
25702570
/// <para>It is similar to <seealso cref="AlsoToMaterialized{TOut,TMat,TMat2,TMat3}"/> which does backpressure instead of dropping elements.</para>
2571-
/// <para>@see <seealso cref="WireTap"/></para>
2571+
/// <para>@see <seealso cref="WireTap{TOut, TMat}(IFlow{TOut, TMat}, Action{TOut})"/></para>
25722572
/// <para>
25732573
/// It is recommended to use the internally optimized <seealso cref="Keep.Left{TLeft,TRight}"/> and <seealso cref="Keep.Right{TLeft,TRight}"/> combiners
25742574
/// where appropriate instead of manually writing functions that pass through one of the values.

src/core/Akka.Streams/Dsl/Source.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ public Task RunForeach(Action<TOut> action, ActorSystem materializer)
450450
/// Shortcut for running this <see cref="Source{TOut,TMat}"/> as an <see cref="IAsyncEnumerable{TOut}"/>.
451451
/// The given enumerable is re-runnable but will cause a re-materialization of the stream each time.
452452
/// This is implemented using a SourceQueue and will buffer elements based on configured stream defaults.
453-
/// For custom buffers Please use <see cref="RunAsAsyncEnumerableBuffer"/>
453+
/// For custom buffers Please use <see cref="RunAsAsyncEnumerableBuffer(IMaterializer, int, int)"/>
454454
/// </summary>
455455
/// <param name="materializer">The materializer to use for each enumeration</param>
456456
/// <returns>A lazy <see cref="IAsyncEnumerable{T}"/> that will run each time it is enumerated.</returns>
@@ -462,7 +462,7 @@ public IAsyncEnumerable<TOut> RunAsAsyncEnumerable(
462462
/// Shortcut for running this <see cref="Source{TOut,TMat}"/> as an <see cref="IAsyncEnumerable{TOut}"/>.
463463
/// The given enumerable is re-runnable but will cause a re-materialization of the stream each time.
464464
/// This is implemented using a SourceQueue and will buffer elements based on configured stream defaults.
465-
/// For custom buffers Please use <see cref="RunAsAsyncEnumerableBuffer"/>
465+
/// For custom buffers Please use <see cref="RunAsAsyncEnumerableBuffer(IMaterializer, int, int)"/>
466466
/// </summary>
467467
/// <param name="materializer">The materializer to use for each enumeration</param>
468468
/// <returns>A lazy <see cref="IAsyncEnumerable{T}"/> that will run each time it is enumerated.</returns>

src/core/Akka.Streams/Stage/GraphStage.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1324,14 +1324,14 @@ public void CancelStage(Exception cause)
13241324
}
13251325

13261326
/// <summary>
1327-
/// Automatically invokes <see cref="Cancel"/> or <see cref="Complete"/> on all the input or output ports that have been called,
1327+
/// Automatically invokes <see cref="Cancel{T}(Inlet{T}, Exception)"/> or <see cref="Complete"/> on all the input or output ports that have been called,
13281328
/// then marks the stage as stopped.
13291329
/// </summary>
13301330
public void CompleteStage()
13311331
=> InternalCompleteStage(SubscriptionWithCancelException.StageWasCompleted.Instance, Option<Exception>.None);
13321332

13331333
/// <summary>
1334-
/// Automatically invokes <see cref="Cancel"/> or <see cref="Fail{T}"/> on all the input or output ports that have been called,
1334+
/// Automatically invokes <see cref="Cancel{T}(Inlet{T}, Exception)"/> or <see cref="Fail{T}"/> on all the input or output ports that have been called,
13351335
/// then marks the stage as stopped.
13361336
/// </summary>
13371337
/// <param name="reason">TBD</param>

src/core/Akka/IO/TcpConnection.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ internal abstract class TcpConnection : ActorBase, IRequiresMessageQueue<IUnboun
5252
enum ConnectionStatus
5353
{
5454
/// <summary>
55-
/// Marks that connection has invoked <see cref="Socket.ReceiveAsync"/> and that
55+
/// Marks that connection has invoked <see cref="Socket.ReceiveAsync(ByteBuffer, SocketFlags)"/> and that
5656
/// <see cref="TcpConnection.ReceiveArgs"/> are currently trying to receive data.
5757
/// </summary>
5858
Receiving = 1,
5959

6060
/// <summary>
61-
/// Marks that connection has invoked <see cref="Socket.SendAsync"/> and that
61+
/// Marks that connection has invoked <see cref="Socket.SendAsync(ByteBuffer, SocketFlags)"/> and that
6262
/// <see cref="TcpConnection.SendArgs"/> are currently sending data. It's important as
6363
/// <see cref="SocketAsyncEventArgs"/> will throw exception if another socket operations will
6464
/// be called over it as it's performing send request. For that reason we cannot release send args

0 commit comments

Comments
 (0)