XmlPullParserFactory.NewInstance Method
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
NewInstance(String, Class) |
Creates a factory that always returns instances of Android's built-in
|
NewInstance() |
Creates a new instance of a PullParserFactory that can be used to create XML pull parsers. |
NewInstance(String, Class)
Creates a factory that always returns instances of Android's built-in
XmlPullParser
and XmlSerializer
implementation.
[Android.Runtime.Register("newInstance", "(Ljava/lang/String;Ljava/lang/Class;)Lorg/xmlpull/v1/XmlPullParserFactory;", "")]
public static Org.XmlPull.V1.XmlPullParserFactory? NewInstance (string? unused, Java.Lang.Class? unused2);
[<Android.Runtime.Register("newInstance", "(Ljava/lang/String;Ljava/lang/Class;)Lorg/xmlpull/v1/XmlPullParserFactory;", "")>]
static member NewInstance : string * Java.Lang.Class -> Org.XmlPull.V1.XmlPullParserFactory
Parameters
- unused
- String
- unused2
- Class
Returns
- Attributes
Exceptions
Remarks
Creates a factory that always returns instances of Android's built-in XmlPullParser
and XmlSerializer
implementation. This <b>does not</b> support factories capable of creating arbitrary parser and serializer implementations. Both arguments to this method are unused.
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.
Applies to
NewInstance()
Creates a new instance of a PullParserFactory that can be used to create XML pull parsers.
[Android.Runtime.Register("newInstance", "()Lorg/xmlpull/v1/XmlPullParserFactory;", "")]
public static Org.XmlPull.V1.XmlPullParserFactory? NewInstance ();
[<Android.Runtime.Register("newInstance", "()Lorg/xmlpull/v1/XmlPullParserFactory;", "")>]
static member NewInstance : unit -> Org.XmlPull.V1.XmlPullParserFactory
Returns
- Attributes
Exceptions
Remarks
Creates a new instance of a PullParserFactory that can be used to create XML pull parsers. The factory will always return instances of Android's built-in XmlPullParser
and XmlSerializer
.
Java documentation for org.xmlpull.v1.XmlPullParserFactory.newInstance()
.
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.