2 instantiations of WrappedOptions
dotnet-svcutil-lib (2)
ImportModule.cs (2)
353importer.State.Add(typeof(WrappedOptions), new WrappedOptions { WrappedFlag = options.Wrapped == true }); 361importer.State.Add(typeof(WrappedOptions), new WrappedOptions { WrappedFlag = options.Wrapped == true });
6 references to WrappedOptions
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (2)
751if (_importer.State.TryGetValue(typeof(WrappedOptions), out wrappedOptions)) 753wrapFlag = ((WrappedOptions)wrappedOptions).WrappedFlag;
ImportModule.cs (4)
352if (!importer.State.ContainsKey(typeof(WrappedOptions))) 353importer.State.Add(typeof(WrappedOptions), new WrappedOptions { WrappedFlag = options.Wrapped == true }); 360if (!importer.State.ContainsKey(typeof(WrappedOptions))) 361importer.State.Add(typeof(WrappedOptions), new WrappedOptions { WrappedFlag = options.Wrapped == true });