4 writes to ActivityPropagation
WsatConfig (4)
CommandLine\ArgumentsParser.cs (2)
283
config.
ActivityPropagation
= true;
288
config.
ActivityPropagation
= false;
Configuration\WsatConfiguration.cs (2)
106
dest.
ActivityPropagation
= src.ActivityPropagation;
339
ActivityPropagation
= wsatConfigProvider.ReadUInt32(WsatKeys.RegistryEntryPropagateActivity, (DefaultActivityPropagation ? 1 : 0)) != 0;
6 references to ActivityPropagation
WsatConfig (6)
Configuration\WsatConfiguration.cs (6)
106
dest.ActivityPropagation = src.
ActivityPropagation
;
564
tracePropString = " -" + CommandLineOption.TraceProp + ":" + (this.
ActivityPropagation
? CommandLineOption.Enable : CommandLineOption.Disable);
759
if (!this.minimalWrite || this.previousConfig == null || this.
ActivityPropagation
!= this.previousConfig.
ActivityPropagation
)
761
wsatConfigProvider.WriteUInt32(WsatKeys.RegistryEntryPropagateActivity, (this.
ActivityPropagation
? 1u : 0));
914
sb.Append(SR.GetString(SR.ConfigActivityProp, Utilities.GetEnabledStatusString(this.
ActivityPropagation
)));