DataSet.Prefix 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DataSet 네임스페이스의 별칭인 XML 접두사를 가져오거나 설정합니다.
public:
property System::String ^ Prefix { System::String ^ get(); void set(System::String ^ value); };
public string Prefix { get; set; }
[System.Data.DataSysDescription("DataSetPrefixDescr")]
public string Prefix { get; set; }
member this.Prefix : string with get, set
[<System.Data.DataSysDescription("DataSetPrefixDescr")>]
member this.Prefix : string with get, set
Public Property Prefix As String
속성 값
DataSet 네임스페이스의 XML 접두사입니다.
- 특성
예제
다음 예제에서는 를 설정 합니다 Prefix 메서드를 ReadXml 호출하기 전에 합니다.
private void ReadData(DataSet thisDataSet)
{
thisDataSet.Namespace = "CorporationA";
thisDataSet.Prefix = "DivisionA";
// Read schema and data.
string fileName = "CorporationA_Schema.xml";
thisDataSet.ReadXmlSchema(fileName);
fileName = "DivisionA_Report.xml";
thisDataSet.ReadXml(fileName);
}
Private Sub ReadData(thisDataSet As DataSet)
thisDataSet.Namespace = "CorporationA"
thisDataSet.Prefix = "DivisionA"
' Read schema and data.
Dim fileName As String = "CorporationA_Schema.xml"
thisDataSet.ReadXmlSchema(fileName)
fileName = "DivisionA_Report.xml"
thisDataSet.ReadXml(fileName)
End Sub
설명
속성은 Prefix XML 문서 전체에서 개체의 DataSet 네임스페이스에 속하는 요소를 식별하는 데 사용됩니다(속성에 Namespace 의해 설정됨).
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET