Rfc822Tokenizer.Tokenize 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
Tokenize(ICharSequence) |
This method will try to take a string like "Foo Bar (something) <foo\ |
Tokenize(String) |
This method will try to take a string like "Foo Bar (something) <foo\ |
Tokenize(ICharSequence, ICollection<Rfc822Token>) |
This constructor will try to take a string like "Foo Bar (something) <foo\ |
Tokenize(String, ICollection<Rfc822Token>) |
This constructor will try to take a string like "Foo Bar (something) <foo\ |
Tokenize(ICharSequence)
This method will try to take a string like "Foo Bar (something) <foo\
[Android.Runtime.Register("tokenize", "(Ljava/lang/CharSequence;)[Landroid/text/util/Rfc822Token;", "")]
public static Android.Text.Util.Rfc822Token[]? Tokenize (Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("tokenize", "(Ljava/lang/CharSequence;)[Landroid/text/util/Rfc822Token;", "")>]
static member Tokenize : Java.Lang.ICharSequence -> Android.Text.Util.Rfc822Token[]
Parameters
- text
- ICharSequence
Returns
- Attributes
Remarks
This method will try to take a string like "Foo Bar (something) <foo\
Java documentation for android.text.util.Rfc822Tokenizer.tokenize(java.lang.CharSequence)
.
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
Tokenize(String)
This method will try to take a string like "Foo Bar (something) <foo\
public static Android.Text.Util.Rfc822Token[]? Tokenize (string? text);
static member Tokenize : string -> Android.Text.Util.Rfc822Token[]
Parameters
- text
- String
Returns
Remarks
This method will try to take a string like "Foo Bar (something) <foo\
Java documentation for android.text.util.Rfc822Tokenizer.tokenize(java.lang.CharSequence)
.
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
Tokenize(ICharSequence, ICollection<Rfc822Token>)
This constructor will try to take a string like "Foo Bar (something) <foo\
[Android.Runtime.Register("tokenize", "(Ljava/lang/CharSequence;Ljava/util/Collection;)V", "")]
public static void Tokenize (Java.Lang.ICharSequence? text, System.Collections.Generic.ICollection<Android.Text.Util.Rfc822Token>? out);
[<Android.Runtime.Register("tokenize", "(Ljava/lang/CharSequence;Ljava/util/Collection;)V", "")>]
static member Tokenize : Java.Lang.ICharSequence * System.Collections.Generic.ICollection<Android.Text.Util.Rfc822Token> -> unit
Parameters
- text
- ICharSequence
- out
- ICollection<Rfc822Token>
- Attributes
Remarks
This constructor will try to take a string like "Foo Bar (something) <foo\
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
Tokenize(String, ICollection<Rfc822Token>)
This constructor will try to take a string like "Foo Bar (something) <foo\
public static void Tokenize (string? text, System.Collections.Generic.ICollection<Android.Text.Util.Rfc822Token>? out);
static member Tokenize : string * System.Collections.Generic.ICollection<Android.Text.Util.Rfc822Token> -> unit
Parameters
- text
- String
- out
- ICollection<Rfc822Token>
Remarks
This constructor will try to take a string like "Foo Bar (something) <foo\
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.