RowUpdatedEventArgs.CopyToRows 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
일괄 업데이트 작업에서 처리된 행에 액세스할 수 있게 합니다.
오버로드
CopyToRows(DataRow[]) |
수정한 행에 대한 참조를 제공된 배열에 복사합니다. |
CopyToRows(DataRow[], Int32) |
수정한 행에 대한 참조를 제공된 배열에 복사합니다. |
설명
자세한 내용은 Batch 업데이트 관련 이벤트 및 오류 처리를 참조하세요.
CopyToRows(DataRow[])
- Source:
- RowUpdatedEventArgs.cs
- Source:
- RowUpdatedEventArgs.cs
- Source:
- RowUpdatedEventArgs.cs
수정한 행에 대한 참조를 제공된 배열에 복사합니다.
public:
void CopyToRows(cli::array <System::Data::DataRow ^> ^ array);
public void CopyToRows (System.Data.DataRow[] array);
member this.CopyToRows : System.Data.DataRow[] -> unit
Public Sub CopyToRows (array As DataRow())
매개 변수
설명
array
길이는 최소한 RowCount 이어야 합니다.
의 null instance 대한 을 throw합니다 ArgumentNullExceptionDataRow.
추가 정보
적용 대상
CopyToRows(DataRow[], Int32)
- Source:
- RowUpdatedEventArgs.cs
- Source:
- RowUpdatedEventArgs.cs
- Source:
- RowUpdatedEventArgs.cs
수정한 행에 대한 참조를 제공된 배열에 복사합니다.
public:
void CopyToRows(cli::array <System::Data::DataRow ^> ^ array, int arrayIndex);
public void CopyToRows (System.Data.DataRow[] array, int arrayIndex);
member this.CopyToRows : System.Data.DataRow[] * int -> unit
Public Sub CopyToRows (array As DataRow(), arrayIndex As Integer)
매개 변수
- arrayIndex
- Int32
복사를 시작할 배열의 인덱스입니다.
설명
array
길이는 최소한 RowCount + arrayIndex
이어야 합니다.
의 null instance 대한 을 throw합니다 ArgumentNullExceptionDataRow.
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET