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)
368
this.Security = (properties.Security != null) ? (SecurityMessageProperty)properties.Security.
CreateCopy
() : null;
412
this.Security = (properties.Security != null) ? (SecurityMessageProperty)properties.Security.
CreateCopy
() : null;
740
array[index++] = new KeyValuePair<string, object>(SecurityKey, _security.
CreateCopy
());
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
301
message.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
();