Gets the value of the attribute with the
specified System.Xml.XmlReader.LocalName and
System.Xml.XmlReader.NamespaceURI from the wrapped reader.
Namespace:
Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Visual Basic |
Dim instance As DelegatingXmlDictionaryReader
Dim name As String
Dim namespaceURI As String
Dim value As String
value = instance(name, namespaceURI)
|
Syntax
Visual Basic |
Public Overrides ReadOnly Default Property Item ( _
name As String, _
namespaceURI As String _
) As String
|
C# |
public override string this [
string name,
string namespaceURI
] { get; }
|
C++ |
public:
virtual property String^ default [String^, String^] {
String^ get (String^ name, String^ namespaceURI) override;
}
|
J# |
/** @property */
public String get_Item (String name, String namespaceURI)
|
Parameters
- name
-
The local name of the attribute.
- namespaceURI
-
The namespace URI of the attribute.
Property Value
The value of the specified attribute. If the attribute is not
found, null is returned.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also