Class StreamFromUriResolvingEventArgs
Provides data for the StreamFromUriResolving event, which occurs when a URI needs to be resolved to a stream.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class StreamFromUriResolvingEventArgs : EventArgs
Constructors
StreamFromUriResolvingEventArgs(String)
Declaration
public StreamFromUriResolvingEventArgs(string uri)
Parameters
System.String
uri
|
Properties
Stream
Represents the stream of data resolved from a URI in the context of the event where the URI resolution takes place.
Declaration
public Stream Stream { get; set; }
Property Value
System.IO.Stream
|
Uri
Provides data for the StreamFromUriResolving event, which is triggered when a URI needs to be resolved to a stream.
Declaration
public string Uri { get; }
Property Value
System.String
|