Skip to content

Commit 17aeb3a

Browse files
committed
Updated xml docs for manual stacking
1 parent f38c372 commit 17aeb3a

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

Source/Shared/Extensions/EventBuilderExtensions.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,10 @@ public static EventBuilder SetVersion(this EventBuilder builder, string version)
5959
/// Changes default stacking behavior by setting the stacking key.
6060
/// </summary>
6161
/// <param name="builder">The event builder object.</param>
62-
/// <param name="stackingKey">The manual stacking key.</param>
63-
public static EventBuilder SetManualStackingKey(this EventBuilder builder, string manualStackingKey)
64-
{
62+
/// <param name="manualStackingKey">The manual stacking key.</param>
63+
public static EventBuilder SetManualStackingKey(this EventBuilder builder, string manualStackingKey) {
6564
builder.Target.SetManualStackingKey(manualStackingKey);
6665
return builder;
6766
}
6867
}
69-
}
68+
}

Source/Shared/Extensions/EventExtensions.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,7 @@ public static void SetUserDescription(this Event ev, UserDescription description
217217
/// </summary>
218218
/// <param name="ev">The event</param>
219219
/// <param name="manualStackingKey">The manual stacking key.</param>
220-
public static void SetManualStackingKey(this Event ev, string manualStackingKey)
221-
{
220+
public static void SetManualStackingKey(this Event ev, string manualStackingKey) {
222221
if (String.IsNullOrWhiteSpace(manualStackingKey))
223222
return;
224223

@@ -258,10 +257,5 @@ public ExtendedDataInfo() {
258257
/// Specifies if properties that throw serialization errors should be ignored.
259258
/// </summary>
260259
public bool IgnoreSerializationErrors { get; set; }
261-
262-
/// <summary>
263-
/// Overrided defalut stacking behavior.
264-
/// </summary>
265-
public string StackingKey { get; set; }
266260
}
267261
}

0 commit comments

Comments
 (0)