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 <code>SchemaFactory</code>?
[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 <code>SchemaFactory</code> will understand. <code>schemaLanguage</code> must specify a <a href="#schemaLanguage">valid</a> schema language.
Returns
<code>true</code> if <code>SchemaFactory</code> supports <code>schemaLanguage</code>, else <code>false</code>.
- Attributes
Exceptions
If schemaLanguage is null.
If schemaLanguage.length() == 0
or schemaLanguage does not specify a schema language.
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.