DelegatingXmlDictionaryReader.GetAttribute 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetAttribute(Int32) |
지정된 인덱스에 있는 특성 값을 가져옵니다. |
GetAttribute(String) |
지정된 이름이 있는 특성의 값을 가져옵니다. |
GetAttribute(String, String) |
지정된 이름과 네임스페이스 URI가 있는 특성의 값을 가져옵니다. |
GetAttribute(Int32)
지정된 인덱스에 있는 특성 값을 가져옵니다.
public:
override System::String ^ GetAttribute(int i);
public override string GetAttribute (int i);
override this.GetAttribute : int -> string
Public Overrides Function GetAttribute (i As Integer) As String
매개 변수
- i
- Int32
특성의 인덱스입니다. 인덱스는 0부터 시작하는 인덱스입니다.
반환
지정한 인덱스의 특성 값입니다.
설명
메서드는 판독기 위치를 이동 하지 않습니다.
적용 대상
GetAttribute(String)
지정된 이름이 있는 특성의 값을 가져옵니다.
public:
override System::String ^ GetAttribute(System::String ^ name);
public override string GetAttribute (string name);
override this.GetAttribute : string -> string
Public Overrides Function GetAttribute (name As String) As String
매개 변수
- name
- String
특성의 정규화된 이름입니다.
반환
특성 값 특성이 없으면 null이 반환됩니다.
설명
메서드는 판독기 위치를 이동 하지 않습니다.
적용 대상
GetAttribute(String, String)
지정된 이름과 네임스페이스 URI가 있는 특성의 값을 가져옵니다.
public:
override System::String ^ GetAttribute(System::String ^ name, System::String ^ namespaceURI);
public override string GetAttribute (string name, string namespaceURI);
override this.GetAttribute : string * string -> string
Public Overrides Function GetAttribute (name As String, namespaceURI As String) As String
매개 변수
- name
- String
특성의 로컬 이름입니다.
- namespaceURI
- String
특성의 네임스페이스입니다.
반환
특성 값 특성이 없으면 null이 반환됩니다.
설명
메서드는 판독기를 이동 하지 않습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET