Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataAdapter::CloneInternals Method ()

 
Note: This API is now obsolete.

Creates a copy of this instance of DataAdapter.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

protected:
[ObsoleteAttribute("CloneInternals() has been deprecated.  Use the DataAdapter(DataAdapter from) constructor.  http://go.microsoft.com/fwlink/?linkid=14202")]
[PermissionSetAttribute(SecurityAction::Demand, Name = "FullTrust")]
virtual DataAdapter^ CloneInternals()

Return Value

Type: System.Data.Common::DataAdapter^

The cloned instance of DataAdapter.

This method is deprecated. The DataAdapter constructor should be used instead of this method.

All the commands, the TableMappings, the MissingSchemaAction, and the MissingMappingAction are cloned. However, the connections for the commands are not copied, but shared. Thus, the cloned DataAdapter can be used against the same connection as the original.

Notes to Inheritors:

When overriding CloneInternals in a derived class, be sure to call the base class's CloneInternals method.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft