@@ -289,7 +289,7 @@ public static void SetManualStackingInfo(this Event ev, IDictionary<string, stri
289
289
if ( signatureData == null || signatureData . Count == 0 )
290
290
return ;
291
291
292
- ev . Data [ Event . KnownDataKeys . ManualStackingKey ] = new StackingInfo ( signatureData ) ;
292
+ ev . Data [ Event . KnownDataKeys . StackingInfo ] = new StackingInfo ( signatureData ) ;
293
293
}
294
294
295
295
/// <summary>
@@ -302,7 +302,7 @@ public static void SetManualStackingInfo(this Event ev, string title, IDictionar
302
302
if ( String . IsNullOrWhiteSpace ( title ) || signatureData == null || signatureData . Count == 0 )
303
303
return ;
304
304
305
- ev . Data [ Event . KnownDataKeys . ManualStackingKey ] = new StackingInfo ( title , signatureData ) ;
305
+ ev . Data [ Event . KnownDataKeys . StackingInfo ] = new StackingInfo ( title , signatureData ) ;
306
306
}
307
307
308
308
/// <summary>
@@ -314,7 +314,7 @@ public static void SetManualStackingKey(this Event ev, string manualStackingKey)
314
314
if ( String . IsNullOrWhiteSpace ( manualStackingKey ) )
315
315
return ;
316
316
317
- ev . Data [ Event . KnownDataKeys . ManualStackingKey ] = new StackingInfo ( null , new Dictionary < string , string > { { "ManualStackingKey" , manualStackingKey } } ) ;
317
+ ev . Data [ Event . KnownDataKeys . StackingInfo ] = new StackingInfo ( null , new Dictionary < string , string > { { "ManualStackingKey" , manualStackingKey } } ) ;
318
318
}
319
319
320
320
/// <summary>
@@ -327,7 +327,7 @@ public static void SetManualStackingKey(this Event ev, string title, string manu
327
327
if ( String . IsNullOrWhiteSpace ( title ) || String . IsNullOrWhiteSpace ( manualStackingKey ) )
328
328
return ;
329
329
330
- ev . Data [ Event . KnownDataKeys . ManualStackingKey ] = new StackingInfo ( title , new Dictionary < string , string > { { "ManualStackingKey" , manualStackingKey } } ) ;
330
+ ev . Data [ Event . KnownDataKeys . StackingInfo ] = new StackingInfo ( title , new Dictionary < string , string > { { "ManualStackingKey" , manualStackingKey } } ) ;
331
331
}
332
332
333
333
public static T GetDataValue < T > ( this Event ev , string key , IJsonSerializer serializer = null ) {
0 commit comments