@@ -31,7 +31,7 @@ public sealed unsafe partial class GarnetClientSession : IServerHook, IMessageCo
3131 /// <param name="aofBeginAddress"></param>
3232 /// <param name="aofTailAddress"></param>
3333 /// <returns></returns>
34- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterInitiateReplicaSync"/>
34+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterInitiateReplicaSync"/>
3535 public Task < string > ExecuteReplicaSync ( string nodeId , string primary_replid , byte [ ] checkpointEntryData , long aofBeginAddress , long aofTailAddress )
3636 {
3737 var tcs = new TaskCompletionSource < string > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -113,7 +113,7 @@ public Task<string> ExecuteReplicaSync(string nodeId, string primary_replid, byt
113113 /// <param name="fileTokenBytes"></param>
114114 /// <param name="fileType"></param>
115115 /// <param name="data"></param>
116- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterSendCheckpointMetadata"/>
116+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterSendCheckpointMetadata"/>
117117 public Task < string > ExecuteSendCkptMetadata ( Memory < byte > fileTokenBytes , int fileType , Memory < byte > data )
118118 {
119119 var tcs = new TaskCompletionSource < string > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -180,7 +180,7 @@ public Task<string> ExecuteSendCkptMetadata(Memory<byte> fileTokenBytes, int fil
180180 /// <param name="startAddress"></param>
181181 /// <param name="data"></param>
182182 /// <param name="segmentId"></param>
183- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterSendCheckpointFileSegment"/>
183+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterSendCheckpointFileSegment"/>
184184 public Task < string > ExecuteSendFileSegments ( Memory < byte > fileTokenBytes , int fileType , long startAddress , Span < byte > data , int segmentId = - 1 )
185185 {
186186 var tcs = new TaskCompletionSource < string > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -266,7 +266,7 @@ public Task<string> ExecuteSendFileSegments(Memory<byte> fileTokenBytes, int fil
266266 /// <param name="beginAddress"></param>
267267 /// <param name="tailAddress"></param>
268268 /// <returns></returns>
269- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterBeginReplicaRecover"/>
269+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterBeginReplicaRecover"/>
270270 public Task < string > ExecuteBeginReplicaRecover ( bool sendStoreCheckpoint , bool replayAOF , string primary_replid , byte [ ] checkpointEntryData , long beginAddress , long tailAddress )
271271 {
272272 var tcs = new TaskCompletionSource < string > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -355,7 +355,7 @@ public Task<string> ExecuteBeginReplicaRecover(bool sendStoreCheckpoint, bool re
355355 /// </summary>
356356 /// <param name="syncMetadata"></param>
357357 /// <returns></returns>
358- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterAttachSync"/>
358+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterAttachSync"/>
359359 public Task < string > ExecuteAttachSync ( byte [ ] syncMetadata )
360360 {
361361 var tcs = new TaskCompletionSource < string > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
@@ -403,7 +403,7 @@ public Task<string> ExecuteAttachSync(byte[] syncMetadata)
403403 /// Set CLUSTER SYNC header info
404404 /// </summary>
405405 /// <param name="sourceNodeId"></param>
406- /// <seealso cref="T :Garnet.cluster.ClusterSession.NetworkClusterSync"/>
406+ /// <seealso cref="M :Garnet.cluster.ClusterSession.NetworkClusterSync"/>
407407 public void SetClusterSyncHeader ( string sourceNodeId )
408408 {
409409 // Unlike Migration, where we don't know at the time of header initialization if we have a record or not, in Replication
0 commit comments