10 references to Items
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageDescription.cs (9)
42this.Items.Body = other.Items.Body.Clone(); 43foreach (MessageHeaderDescription mhd in other.Items.Headers) 45this.Items.Headers.Add(mhd.Clone() as MessageHeaderDescription); 47foreach (MessagePropertyDescription mpd in other.Items.Properties) 49this.Items.Properties.Add(mpd.Clone() as MessagePropertyDescription); 71get { return Items.Body; } 81get { return Items.Headers; } 86get { return Items.Properties; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
1400_messages.Add(typedMessageType, messageDescription.Items);