Example #1
0
 public HerculesSpanAnnotations(HerculesTags annotations)
 {
     this.annotations = annotations;
 }
Example #2
0
 internal static ExceptionData FromTags(HerculesTags tags)
 {
     return(tags == null
         ? null
         : new ExceptionData(tags));
 }
 internal StackFrameData(HerculesTags tags)
 {
     this.tags = tags;
 }
Example #4
0
 private ExceptionData(HerculesTags tags)
 {
     this.tags = tags;
 }