Class SimpleStreamUriParser
Base class for a simple StreamUriParser whose URI checking logic only requires a list of supported schemes or protocols.
Inheritance
SimpleStreamUriParser
Implements
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.dll
Syntax
public abstract class SimpleStreamUriParser : StreamUriParser, IStreamUriParser
Properties
| Edit this page View SourceSchemeList
Declaration
protected abstract IEnumerable<string> SchemeList { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Methods
| Edit this page View SourceHandles(Uri)
Determines whether this StreamUriParser can create a Stream from the specified Uri.
Declaration
public override bool Handles(Uri uri)
Parameters
Type | Name | Description |
---|---|---|
Uri | uri | Uri to check. |
Returns
Type | Description |
---|---|
bool | true if this StreamUriParser can create a Stream from the specified Uri, false otherwise. |