SchemaFactory.IsSchemaLanguageSupported(String) 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.
Is specified schema supported by this SchemaFactory
?
[Android.Runtime.Register("isSchemaLanguageSupported", "(Ljava/lang/String;)Z", "GetIsSchemaLanguageSupported_Ljava_lang_String_Handler")]
public abstract bool IsSchemaLanguageSupported (string? schemaLanguage);
[<Android.Runtime.Register("isSchemaLanguageSupported", "(Ljava/lang/String;)Z", "GetIsSchemaLanguageSupported_Ljava_lang_String_Handler")>]
abstract member IsSchemaLanguageSupported : string -> bool
Parameters
- schemaLanguage
- String
Specifies the schema language which the returned SchemaFactory
will understand.
schemaLanguage
must specify a valid schema language.
Returns
true
if SchemaFactory
supports schemaLanguage
, else false
.
- Attributes
Exceptions
If schemaLanguage
is null
.
If schemaLanguage.length() == 0
or schemaLanguage
does not specify a schema language.
Remarks
Is specified schema supported by this SchemaFactory
?
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.