コード例 #1
0
ファイル: Trace.cs プロジェクト: mullerhai/zipkin4net
 public override int GetHashCode()
 {
     unchecked
     {
         return((CorrelationId.GetHashCode() * 397) ^ (CurrentSpan != null ? CurrentSpan.GetHashCode() : 0));
     }
 }
コード例 #2
0
ファイル: Trace.cs プロジェクト: mullerhai/zipkin4net
 /// <summary>
 /// Force this trace to be sent.
 /// </summary>
 public void ForceSampled()
 {
     CurrentSpan.SetSampled();
 }