Esempio n. 1
0
            public Mapping(PProfProto.Mapping item, PProfInfo.String filenameInfo, PProfInfo.String buildIdInfo)
            {
                Validate.NotNull(item, nameof(item));
                Validate.NotNull(filenameInfo, nameof(filenameInfo));
                // buildIdInfo may be null

                this.Item = item;
                this.IsIncludedInSession = false;
                this.FilenameInfo        = filenameInfo;
                this.BuildIdInfo         = buildIdInfo;
            }
Esempio n. 2
0
 public Mapping(PProfProto.Mapping item, PProfInfo.String filenameInfo)
     : this(item, filenameInfo, buildIdInfo : null)
 {
 }