DataAdapter::CloneInternals Method ()
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Data.Common
Assembly: System.Data (in System.Data.dll)
Return to top
Creates a copy of this instance of DataAdapter.
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()
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
Available since 1.1
Show: