File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Source/Main/NProxy.Core/Interceptors Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,4 @@ See [here](https://github.com/mtamme/NProxy/blob/master/Documentation/BENCHMARKS
8585
8686# Copyright
8787
88- Copyright © Martin Tamme. See LICENSE for details.
89-
90- ===
91-
92- ![ Powered by ReSharper] ( http://www.jetbrains.com/resharper/img/rs179x67.gif " Powered by ReSharper ")
88+ Copyright © Martin Tamme. See LICENSE for details.
Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ public interface IInvocationContext
3838 /// </summary>
3939 object [ ] Parameters { get ; }
4040
41+ /// <summary>
42+ /// Gets or sets the data object associated with the invocation.
43+ /// </summary>
44+ object Data { get ; set ; }
45+
4146 /// <summary>
4247 /// Proceed to the next interceptor in the interceptor chain.
4348 /// </summary>
Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ public object[] Parameters
112112 get { return _parameters ; }
113113 }
114114
115+ /// <inheritdoc/>
116+ public object Data { get ; set ; }
117+
115118 /// <inheritdoc/>
116119 public object Proceed ( )
117120 {
You can’t perform that action at this time.
0 commit comments