Implemented interface member:
method
CreateCopy
System.ServiceModel.Channels.IMessageProperty.CreateCopy()
6 references to CreateCopy
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageProperties.cs (3)
368this.Security = (properties.Security != null) ? (SecurityMessageProperty)properties.Security.CreateCopy() : null; 412this.Security = (properties.Security != null) ? (SecurityMessageProperty)properties.Security.CreateCopy() : null; 740array[index++] = new KeyValuePair<string, object>(SecurityKey, _security.CreateCopy());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
301message.Properties.Security = (SecurityMessageProperty)_security.CreateCopy();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (2)
66_bootstrapMessageProperty = (sourceToken._bootstrapMessageProperty == null) ? null : (SecurityMessageProperty)sourceToken.BootstrapMessageProperty.CreateCopy(); 89_bootstrapMessageProperty = (from._bootstrapMessageProperty == null) ? null : (SecurityMessageProperty)from.BootstrapMessageProperty.CreateCopy();