AttributeListImpl Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AttributeListImpl() |
Obsolete.
Create an empty attribute list. |
AttributeListImpl(IAttributeList) |
Obsolete.
Construct a persistent copy of an existing attribute list. |
AttributeListImpl(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
AttributeListImpl()
Caution
deprecated
Create an empty attribute list.
[Android.Runtime.Register(".ctor", "()V", "")]
[System.Obsolete("deprecated")]
public AttributeListImpl ();
- Attributes
Remarks
Create an empty attribute list.
This constructor is most useful for parser writers, who will use it to create a single, reusable attribute list that can be reset with the clear method between elements.
Java documentation for org.xml.sax.helpers.AttributeListImpl.AttributeListImpl()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
See also
- <xref:Org.Xml.Sax.Helpers.AttributeListImpl.AddAttribute(System.String%2c+System.String%2c+System.String)>
- Clear()
Applies to
AttributeListImpl(IAttributeList)
Caution
deprecated
Construct a persistent copy of an existing attribute list.
[Android.Runtime.Register(".ctor", "(Lorg/xml/sax/AttributeList;)V", "")]
[System.Obsolete("deprecated")]
public AttributeListImpl (Org.Xml.Sax.IAttributeList? atts);
[<Android.Runtime.Register(".ctor", "(Lorg/xml/sax/AttributeList;)V", "")>]
[<System.Obsolete("deprecated")>]
new Org.Xml.Sax.Helpers.AttributeListImpl : Org.Xml.Sax.IAttributeList -> Org.Xml.Sax.Helpers.AttributeListImpl
Parameters
- atts
- IAttributeList
The attribute list to copy
- Attributes
Remarks
Construct a persistent copy of an existing attribute list.
This constructor is most useful for application writers, who will use it to create a persistent copy of an existing attribute list.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
See also
- <xref:Org.Xml.Sax.IDocumentHandler.StartElement(System.String%2c+Org.Xml.Sax.IAttributeList)>
Applies to
AttributeListImpl(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected AttributeListImpl (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Xml.Sax.Helpers.AttributeListImpl : nativeint * Android.Runtime.JniHandleOwnership -> Org.Xml.Sax.Helpers.AttributeListImpl
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.