Hi all,
I'm trying to understand how to use SourceLocationProvider.CollectMapping
method in C# .NET 4.0.
The documentation in http://msdn.microsoft.com/en-us/library/dd987879.aspx mentions that the parameters are
rootActivity1
, Type:System.Activities.Activity
, description: A workflow element that represents an activity that is not mapped to a source locationrootActivity2
, Type:System.Activities.Activity
, description: A workflow element that shadowsrootActivity1
but has specific source locations to which its members are mapped.mapping
, Type:System.Collections.Generic.Dictionary<Object, SourceLocation>
, description: A dictionary object that contains a root activity and its descendants, each mapped to a source location.path
, Type:System.String
, description: The path of the source file to use.
So my question here is for the parameter number 2, what does "shadows rootActivity1
" term means?