Implemented interface member:
method
Clone
System.ICloneable.Clone()
252 references to Clone
mscorlib (76)
microsoft\win32\registrykey.cs (1)
1504
string[] dataStrings = (string[])(((string[])value).
Clone
());
system\appdomain.cs (1)
3602
args=(string[])setup.AppDomainInitializerArguments.
Clone
();
system\AppDomainSetup.cs (2)
287
_AptcaVisibleAssemblies = (string[])value.
Clone
();
542
return (byte[]) _ConfigurationBytes.
Clone
();
system\defaultbinder.cs (6)
46
MethodBase[] candidates = (MethodBase[]) match.
Clone
();
302
state = new BinderState((int[])paramOrder[0].
Clone
(), args.Length, paramArrayTypes[0] != null);
382
state = new BinderState((int[])paramOrder[currentMin].
Clone
(), args.Length, paramArrayTypes[currentMin] != null);
454
FieldInfo[] candidates = (FieldInfo[]) match.
Clone
();
536
MethodBase[] candidates = (MethodBase[]) match.
Clone
();
613
PropertyInfo[] candidates = (PropertyInfo[]) match.
Clone
();
System\Diagnostics\Eventing\TraceLogging\TraceLoggingEventTypes.cs (1)
255
return (TraceLoggingTypeInfo[])typeInfos.
Clone
(); ;
system\globalization\datetimeformatinfo.cs (9)
1394
return ((String[])internalGetAbbreviatedDayOfWeekNames().
Clone
());
1422
return ((String[])internalGetSuperShortDayNames().
Clone
());
1447
return ((String[])internalGetDayOfWeekNames().
Clone
());
1472
return ((String[])internalGetAbbreviatedMonthNames().
Clone
());
1498
return ((String[])internalGetMonthNames().
Clone
());
1816
return (string[])patterns.
Clone
();
1835
newPatterns = (string[])patterns.
Clone
();
2113
return ((String[])internalGetGenitiveMonthNames(true).
Clone
());
2141
return ((String[])internalGetGenitiveMonthNames(false).
Clone
());
system\globalization\gregoriancalendarhelper.cs (1)
513
return ((int[])m_eras.
Clone
());
system\globalization\numberformatinfo.cs (7)
382
return ((int[])currencyGroupSizes.
Clone
());
392
Int32[] inputSizes = (Int32[])value.
Clone
();
403
return ((int[])numberGroupSizes.
Clone
());
413
Int32[] inputSizes = (Int32[])value.
Clone
();
422
return ((int[])percentGroupSizes.
Clone
());
431
Int32[] inputSizes = (Int32[])value.
Clone
();
771
get { return (String[])nativeDigits.
Clone
(); }
system\globalization\sortkey.cs (1)
119
return (byte[])(m_KeyData.
Clone
());
system\io\path.cs (2)
286
return (char[]) RealInvalidPathChars.
Clone
();
291
return (char[]) InvalidFileNameChars.
Clone
();
system\reflection\emit\dynamicilgenerator.cs (3)
1065
m_code = (code != null) ? (byte[])code.
Clone
() : EmptyArray<Byte>.Value;
1092
m_exceptions = (exceptions != null) ? (byte[])exceptions.
Clone
() : EmptyArray<Byte>.Value;
1117
m_localSignature = (localSignature != null) ? (byte[])localSignature.
Clone
() : EmptyArray<Byte>.Value;
system\reflection\emit\methodbuilder.cs (3)
984
byte[] newIL = (byte[])il.
Clone
();
988
newLocalSignature = (byte[])localSignature.
Clone
();
1030
return (T[])array.
Clone
();
system\runtime\remoting\messagesmuggler.cs (1)
119
return array.
Clone
();
system\runtime\serialization\objectmanager.cs (1)
783
arrayIndex = (int[])arrayIndex.
Clone
();
system\security\claims\Claim.cs (1)
289
m_userSerializationData = other.m_userSerializationData.
Clone
() as byte[];
system\security\claims\ClaimsIdentity.cs (2)
346
m_userSerializationData = claimsIdentity.m_userSerializationData.
Clone
() as byte[];
400
m_userSerializationData = other.m_userSerializationData.
Clone
() as byte[];
system\security\cryptography\asymmetricalgorithm.cs (1)
72
get { return (KeySizes[]) LegalKeySizesValue.
Clone
(); }
system\security\cryptography\des.cs (2)
51
return (byte[]) KeyValue.
Clone
();
65
KeyValue = (byte[]) value.
Clone
();
system\security\cryptography\hashalgorithm.cs (4)
41
return (byte[]) HashValue.
Clone
();
72
byte[] Tmp = (byte[]) HashValue.
Clone
();
86
byte[] Tmp = (byte[]) HashValue.
Clone
();
108
byte[] Tmp = (byte[]) HashValue.
Clone
();
system\security\cryptography\hmac.cs (2)
84
KeyValue = (byte[]) key.
Clone
();
94
get { return (byte[]) KeyValue.
Clone
(); }
system\security\cryptography\keyedhashalgorithm.cs (2)
36
get { return (byte[]) KeyValue.
Clone
(); }
40
KeyValue = (byte[]) value.
Clone
();
system\security\cryptography\mactripledes.cs (2)
68
KeyValue = (byte[]) rgbKey.
Clone
();
175
get { return (byte[]) _Buffer.
Clone
(); }
system\security\cryptography\passwordderivebytes.cs (2)
119
return (byte[]) _salt.
Clone
();
127
_salt = (byte[]) value.
Clone
();
system\security\cryptography\rfc2898derivebytes.cs (2)
136
get { return (byte[]) m_salt.
Clone
(); }
143
m_salt = (byte[]) value.
Clone
();
system\security\cryptography\rsaoaepkeyexchangeformatter.cs (2)
38
return (byte[]) ParameterValue.
Clone
();
43
ParameterValue = (byte[]) value.
Clone
();
system\security\cryptography\symmetricalgorithm.cs (6)
121
return (byte[]) IVValue.
Clone
();
129
IVValue = (byte[]) value.
Clone
();
136
return (byte[]) KeyValue.
Clone
();
145
KeyValue = (byte[]) value.
Clone
();
151
get { return (KeySizes[]) LegalBlockSizesValue.
Clone
(); }
155
get { return (KeySizes[]) LegalKeySizesValue.
Clone
(); }
system\security\cryptography\tripledes.cs (2)
50
return (byte[]) KeyValue.
Clone
();
61
KeyValue = (byte[]) value.
Clone
();
system\security\cryptography\x509certificates\x509certificate.cs (5)
263
return (byte[]) m_serialNumber.
Clone
();
277
return (byte[]) m_publicKeyParameters.
Clone
();
304
return (byte[]) m_publicKeyValue.
Clone
();
322
return (byte[]) m_thumbprint.
Clone
();
713
return (byte[]) m_rawData.
Clone
();
system\timezoneinfo.cs (2)
328
return (AdjustmentRule[])m_adjustmentRules.
Clone
();
1125
m_adjustmentRules = (AdjustmentRule[])adjustmentRules.
Clone
();
PresentationBuildTasks (2)
Framework\System\Windows\Markup\XamlTypeMapper.cs (2)
4658
return (string[])_defaultAssemblies.
Clone
();
4666
return (NamespaceMapEntry[])_defaultNamespaceMapTable.
Clone
();
PresentationCore (25)
Core\CSharp\System\Windows\Media\Animation\Generated\BooleanAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\CharAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\ColorAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\DoubleAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Int16AnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Int32AnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Int64AnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\MatrixAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\ObjectAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Point3DAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\PointAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\QuaternionAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\RectAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Rotation3DAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\SingleAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\SizeAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\StringAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\Vector3DAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Animation\Generated\VectorAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
Core\CSharp\System\Windows\Media\Color.cs (1)
394
return (float[])nativeColorValue.
Clone
();
Core\CSharp\System\Windows\Media\FormattedText.cs (1)
1348
return (_maxTextWidths == null) ? null : (double [])_maxTextWidths.
Clone
();
Core\CSharp\System\Windows\Media\Imaging\BitmapMetadataBlob.cs (1)
51
return (byte[]) _blob.
Clone
();
Core\CSharp\System\Windows\Media\PixelFormat.cs (1)
83
return _mask != null ? new PartialList<byte>((byte[])_mask.
Clone
()) : null;
PresentationFramework (14)
src\Framework\Microsoft\Win32\FileDialog.cs (1)
1296
return (string[])_fileNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\DataIdProcessor.cs (1)
253
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\FixedPageProcessor.cs (1)
265
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\FixedTextSelectionProcessor.cs (1)
386
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\TextSelectionProcessor.cs (1)
320
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\TextViewSelectionProcessor.cs (1)
201
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\Annotations\Anchoring\TreeNodeSelectionProcessor.cs (1)
197
return (XmlQualifiedName[])LocatorPartTypeNames.
Clone
();
src\Framework\MS\Internal\IO\Packaging\PackageFilter.cs (1)
622
string[] path = (string[]) pathWithGaps.
Clone
();
src\Framework\System\Windows\Interop\DynamicScriptObject.cs (1)
394
args = (object[])args.
Clone
();
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (4)
301
XamlTypeMapper newMapper = new XamlTypeMapper(_assemblyNames.
Clone
() as string[]);
308
newMapper._namespaceMaps = _namespaceMaps.
Clone
() as NamespaceMapEntry[];
4658
return (string[])_defaultAssemblies.
Clone
();
4666
return (NamespaceMapEntry[])_defaultNamespaceMapTable.
Clone
();
src\Framework\System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (1)
182
_sortedResolvedKeyFrames = (ResolvedKeyFrameEntry[])sourceAnimation._sortedResolvedKeyFrames.
Clone
();
System (11)
compmod\system\componentmodel\design\PropertyTabAttribute.cs (4)
133
return (string[])tabClassNames.
Clone
();
211
this.tabClasses = (Type[])tabClasses.
Clone
();
217
this.tabClassNames = (string[])tabClassNames.
Clone
();
230
this.tabScopes = (PropertyTabScope[])tabScopes.
Clone
();
compmod\system\componentmodel\EventDescriptorCollection.cs (1)
95
this.namedSort = (string[])namedSort.
Clone
();
compmod\system\componentmodel\PropertyDescriptorCollection.cs (2)
117
this.namedSort = (string[])namedSort.
Clone
();
593
return (ICollection)properties.
Clone
();
net\System\Net\Sockets\Socket.cs (1)
9267
m_SendPacketsElementsInternal = (SendPacketsElement[])m_SendPacketsElements.
Clone
();
net\System\Net\WebUtility.cs (1)
395
? (byte[])encoded.
Clone
()
security\system\security\Authentication\ExtendedProtection\TokenBinding.cs (1)
28
return (_rawTokenBindingId != null) ? (byte[])_rawTokenBindingId.
Clone
() : null;
security\system\security\cryptography\asnencodeddata.cs (1)
66
m_rawData = (byte[]) value.
Clone
();
System.Activities (1)
System\Activities\Debugger\Symbol\WorkflowSymbol.cs (1)
31
return (byte[]) this.checksum.
Clone
();
System.Core (19)
Microsoft\Scripting\Compiler\DelegateHelpers.Generated.cs (1)
84
curTypeInfo.DelegateType = MakeNewDelegate((Type[])types.
Clone
());
System\Collections\Generic\HashSet.cs (2)
171
m_buckets = (int[])source.m_buckets.
Clone
();
172
m_slots = (Slot[])source.m_slots.
Clone
();
System\Security\Cryptography\AesCryptoServiceProvider.cs (5)
99
byte[] keyValue = (byte[])value.
Clone
();
171
byte[] keyCopy = (byte[])key.
Clone
();
174
ivCopy = (byte[])iv.
Clone
();
237
byte[] keyCopy = (byte[])key.
Clone
();
240
ivCopy = (byte[])iv.
Clone
();
System\Security\Cryptography\CngProperty.cs (2)
33
m_value = value.
Clone
() as byte[];
73
value = m_value.
Clone
() as byte[];
System\Security\Cryptography\ECDiffieHellmanCng.cs (7)
374
byte[] secretAppend = SecretAppend == null ? null : SecretAppend.
Clone
() as byte[];
375
byte[] secretPrepend = SecretPrepend == null ? null : SecretPrepend.
Clone
() as byte[];
384
byte[] hmacKey = HmacKey == null ? null : HmacKey.
Clone
() as byte[];
385
byte[] secretAppend = SecretAppend == null ? null : SecretAppend.
Clone
() as byte[];
386
byte[] secretPrepend = SecretPrepend == null ? null : SecretPrepend.
Clone
() as byte[];
398
byte[] label = Label == null ? null : Label.
Clone
() as byte[];
399
byte[] seed = Seed == null ? null : Seed.
Clone
() as byte[];
System\Security\Cryptography\ECDiffieHellmanPublicKey.cs (2)
31
m_keyBlob = keyBlob.
Clone
() as byte[];
44
return m_keyBlob.
Clone
() as byte[];
System.Data (5)
fx\src\data\System\Data\Common\NameValuePermission.cs (1)
50
NameValuePermission[] tree = (_tree.
Clone
() as NameValuePermission[]);
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
71
_initialState[i] = (byte[])recoveryData._initialState[i].
Clone
();
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (1)
528
newBitmap._nullBitmap = _nullBitmap == null ? null : (byte[])_nullBitmap.
Clone
();
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (2)
170
return (byte[]) m_txn.
Clone
();
178
m_txn = (byte[]) value.
Clone
();
System.Data.Entity (6)
System\Data\Common\CommandTrees\ValueExpressions.cs (2)
46
this._value = ((byte[])value).
Clone
();
74
return ((byte[])_value).
Clone
();
System\Data\Objects\DataClasses\StructuralObject.cs (2)
280
return (byte[])currentValue.
Clone
();
311
return (byte[])value.
Clone
();
System\Data\Spatial\DefaultSpatialServices.cs (2)
32
this.wkb = (binaryValue == null ? null : (byte[])binaryValue.
Clone
());
38
internal byte[] CloneBinary() { return (this.wkb == null ? null : (byte[])this.wkb.
Clone
()); }
System.Data.Entity.Design (2)
System\Data\Entity\Design\SSDLGenerator\FunctionDetailsReader.cs (2)
194
return new MementoV1((object[])_currentRow.
Clone
());
360
return new MementoV3((object[])_currentRow.
Clone
());
System.Data.Services (1)
System\Data\Services\Parsing\RequestQueryParser.cs (1)
1861
Expression[] arguments = this.nullPropagationRequired ? originalArguments : (Expression[])originalArguments.
Clone
();
System.Data.SqlXml (1)
System\Xml\Xsl\QIL\QilList.cs (1)
75
n.members = (QilNode[]) this.members.
Clone
();
System.Drawing (3)
commonui\System\Drawing\Design\ToolboxComponentsCreatedEventArgs.cs (1)
40
return (IComponent[])comps.
Clone
();
commonui\System\Drawing\Design\ToolboxItem.cs (2)
111
return (AssemblyName[]) names.
Clone
();
116
Properties["DependentAssemblies"] = value.
Clone
();
System.IdentityModel (1)
System\IdentityModel\Tokens\SecurityKeyIdentifierClause.cs (1)
60
return (this.derivationNonce != null) ? (byte[])this.derivationNonce.
Clone
() : null;
System.IO.Log (1)
System\IO\Log\LogReserveAndAppendState.cs (1)
396
this.alignedReservations = (long[])this.reservations.
Clone
();
System.Numerics (2)
System\Numerics\BigInteger.cs (2)
300
dwords = (uint[])_bits.
Clone
();
349
dwords = (uint[])_bits.
Clone
();
System.Security (5)
system\security\cryptography\pkcs\pkcsmisc.cs (1)
365
parameters = (byte[]) rc2Parameters.rgbIV.
Clone
();
system\security\cryptography\pkcs\signerinfo.cs (1)
77
m_encodedSignerInfo = (byte[]) encodedSignerInfo.
Clone
();
system\security\cryptography\xml\canonicalxml.cs (1)
113
byte[] res = (byte[]) hash.Hash.
Clone
();
system\security\cryptography\xml\cipherdata.cs (1)
66
m_cipherValue = (byte[]) value.
Clone
();
system\security\cryptography\xml\exccanonicalxml.cs (1)
69
byte[] res = (byte[]) hash.Hash.
Clone
();
System.ServiceModel (4)
System\ServiceModel\EnvelopeVersion.cs (1)
149
return (string[])this.ultimateDestinationActorValues.
Clone
();
System\ServiceModel\MsmqIntegration\MsmqIntegrationBindingElement.cs (3)
28
this.targetSerializationTypes = other.targetSerializationTypes.
Clone
() as Type[];
65
return this.targetSerializationTypes.
Clone
() as Type[];
73
this.targetSerializationTypes = value.
Clone
() as Type[];
System.Web (35)
Cache\CacheDependency.cs (3)
320
filenames = (string []) filenamesArg.
Clone
();
327
cachekeys = (string []) cachekeysArg.
Clone
();
967
dependencies = (CacheDependency []) dependencies.
Clone
();
Configuration\MachineKeySection.cs (2)
107
internal byte[] ValidationKeyInternal { get { RuntimeDataInitialize(); return (byte[])_ValidationKey.
Clone
(); } }
108
internal byte[] DecryptionKeyInternal { get { RuntimeDataInitialize(); return (byte[])_DecryptionKey.
Clone
(); } }
Hosting\TlsTokenBindingInfo.cs (2)
21
? (byte[])_providedTokenBindingId.
Clone
()
27
? (byte[])_referredTokenBindingId.
Clone
()
HttpCachePolicy.cs (5)
364
return (_varyByContentEncodings == null) ? null : (string[]) _varyByContentEncodings.
Clone
() ;}}
366
return (_varyByHeaderValues == null) ? null : (string[]) _varyByHeaderValues.
Clone
() ;}}
369
return (_varyByParamValues == null) ? null : (string[]) _varyByParamValues.
Clone
() ;}}
379
return (_privateFields == null) ? null : (string[]) _privateFields.
Clone
() ;}}
382
return (_noCacheFields == null) ? null : (string[]) _noCacheFields.
Clone
() ;}}
HttpResponse.cs (2)
993
_userAddedDependencies = (CacheDependency[]) dependencies.
Clone
();
3602
itemsLocal = (string[]) items.
Clone
();
UI\WebControls\DetailsView.cs (2)
540
return(string[])((string[])o).
Clone
();
547
_dataKeyNames = (string[])value.
Clone
();
UI\WebControls\FormView.cs (2)
364
return (string[])((string[])o).
Clone
();
371
_dataKeyNames = (string[])value.
Clone
();
UI\WebControls\GridView.cs (4)
610
return (string[])((string[])o).
Clone
();
617
_dataKeyNames = (string[])value.
Clone
();
1097
return (string[])((string[])o).
Clone
();
1104
_clientIDRowSuffix = (string[])value.
Clone
();
UI\WebControls\HyperLinkField.cs (2)
48
return(string[])((string[])o).
Clone
();
57
ViewState["DataNavigateUrlFields"] = (string[])value.
Clone
();
UI\WebControls\RoleGroup.cs (2)
54
return (string[]) _roles.
Clone
();
63
_roles = (string[]) value.
Clone
();
UI\WebControls\TableCell.cs (2)
80
return (x != null) ? (string[])((string[])x).
Clone
() : new string[0];
84
ViewState["AssociatedHeaderCellID"] = (string[])value.
Clone
();
UI\WebControls\TableHeaderCell.cs (2)
93
return (x != null) ? (string[])((string[])x).
Clone
() : new string[0];
97
ViewState["CategoryText"] = (string[])value.
Clone
();
UI\WebParts\RowToParametersTransformer.cs (4)
34
return (_consumerFieldNames != null) ? (string[])_consumerFieldNames.
Clone
() : new string[0];
37
_consumerFieldNames = (value != null) ? (string[])value.
Clone
() : null;
52
return (_providerFieldNames != null) ? (string[])_providerFieldNames.
Clone
() : new string[0];
55
_providerFieldNames = (value != null) ? (string[])value.
Clone
() : null;
Util\HttpEncoder.cs (1)
613
? (byte[])encoded.
Clone
()
System.Web.DataVisualization (1)
Common\Borders3D\EmbedBorder.cs (1)
690
oldCorners = (float[])cornerRadius.
Clone
();
System.Web.Extensions (11)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (1)
1412
extensionFileContents.Add(extensionFile.Name, (byte[])extensionFile.ContentBuffer.
Clone
());
Configuration\ScriptingProfileServiceSection.cs (4)
63
return propertiesForReading == null ? null : (string[]) propertiesForReading.
Clone
();
67
value = (string[]) value.
Clone
();
80
return propertiesForWriting == null ? null : (string[]) propertiesForWriting.
Clone
();
84
value = (string[]) value.
Clone
();
UI\ProfileServiceManager.cs (2)
255
return (string[]) _loadProperties.
Clone
();
259
value = (string[])value.
Clone
();
UI\WebControls\ListView.cs (4)
336
return (string[])((string[])o).
Clone
();
343
_dataKeyNames = (string[])value.
Clone
();
748
return (string[])((string[])o).
Clone
();
755
_clientIDRowSuffix = (string[])value.
Clone
();
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ColorDialog.cs (1)
143
get { return(int[]) customColors.
Clone
();}
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2Enum.cs (2)
92
return(object[])this.values.
Clone
();
102
return(string[])this.names.
Clone
();
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
697
return new Com2PropertyDescriptor(this.dispid, this.Name, (Attribute[])this.baseAttrs.
Clone
(), this.readOnly, this.propertyType, this.typeData, this.hrHidden);
winforms\Managed\System\WinForms\FileDialog.cs (1)
313
return(string[])fileNames.
Clone
();
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
1245
currentObjects = (object[])value.
Clone
();
1395
return (object[])currentObjects.
Clone
();
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntryCollection.cs (1)
45
entries = (GridEntry[])value.
Clone
();
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (2)
231
mergedList.Add(matchArray.
Clone
());
315
mergedEntries.Add(mergeArray.
Clone
());
System.Windows.Forms.DataVisualization (1)
Common\Borders3D\EmbedBorder.cs (1)
690
oldCorners = (float[])cornerRadius.
Clone
();
System.Workflow.ComponentModel (4)
AuthoringOM\Compiler\TypeSystem\AttributeInfo.cs (2)
55
this.argumentNames = (string[])argumentNames.
Clone
();
56
this.argumentValues = (object[])argumentValues.
Clone
();
AuthoringOM\Compiler\TypeSystem\DesignTimeType.cs (2)
1248
this.parameters = (Type[])parameters.
Clone
();
1280
return (Type[])parameters.
Clone
();
System.WorkflowServices (2)
System\Workflow\Activities\ContractType.cs (2)
758
this.parameters = (Type[])parameters.
Clone
();
779
return (Type[])parameters.
Clone
();
System.Xml (3)
System\Xml\HWStack.cs (1)
101
return new HWStack((object[]) this.stack.
Clone
(), this.growthRate, this.used, this.size);
System\Xml\Schema\BitSet.cs (1)
172
newset.bits = (uint[])bits.
Clone
();
System\Xml\XPath\Internal\XPathMultyIterator.cs (1)
125
this.arr = (ResetableIterator[]) it.arr.
Clone
();
UIAutomationClient (6)
MS\Internal\Automation\EventListener.cs (1)
43
_properties = (AutomationProperty[])properties.
Clone
();
MS\Internal\Automation\WinEventWrap.cs (1)
46
_eventIds = (int [])eventIds.
Clone
();
System\Windows\Automation\AndCondition.cs (2)
56
_conditions = (Condition [ ]) conditions.
Clone
();
82
return (Condition []) _conditions.
Clone
();
System\Windows\Automation\OrCondition.cs (2)
56
_conditions = (Condition[])conditions.
Clone
();
83
return (Condition []) _conditions.
Clone
();