Report.StreamURL(Boolean, 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.
Returns the URL needed to retrieve this stream from another. Works with the CreateAndRegisterStream delegate function.
public:
System::String ^ StreamURL(bool useSessionId, System::String ^ streamName);
public string StreamURL (bool useSessionId, string streamName);
member this.StreamURL : bool * string -> string
Public Function StreamURL (useSessionId As Boolean, streamName As String) As String
Parameters
- useSessionId
- Boolean
Indicates whether to use the session ID. If true
, the session ID is used.
- streamName
- String
The name of the stream.
Returns
A String
value containing the URL needed to retrieve this stream from another.
Remarks
The CreateAndRegisterStream delegate function is called by the rendering extension to get the stream to render to. The main body of the report must be the first stream created. To refer to this stream in another stream, use the StreamURL method, concatenated with the name, a period, and the extension. For example, if the StreamURL is XYZ_files and this is stream ABC, and it is a JPEG file type, the stream can be referred to using XYZ_Files/ABC.jpg
.
If the rendering extension calls the callback CreateAndRegisterStream to create a stream that it will access using the URL returned by the StreamURL method, both methods must use the same stream name.