Sets the source element to connect to the Play To target.
Syntax
playToSourceRequest.setSource(value);
Parameters
- value
-
Type: PlayToSource
The source element to connect to the Play To target.
Remarks
The PlayToSourceRequest class represents a user request for source media to stream to a Play To target. You use the SourceRequest property of the PlayToSourceRequestedEventArgs class to pass media from your application to Play To during the SourceRequested event.
For an example of how to use Play To in an application, see Quickstart: Using Play To in applications (JavaScript) or Quickstart: Using Play To in applications (C#/VB).
Examples
// Play To Contract var ptm = Windows.Media.PlayTo.PlayToManager.getForCurrentView(); ptm.addEventListener("sourcerequested", sourceRequestHandler, false); function sourceRequestHandler(e) { try { e.sourceRequest.setSource(mediaElement.msPlayToSource); } catch (ex) { id("messageDiv").innerHTML += "Exception encountered: " + ex.message + "<br/>"; } }
Requirements
|
Minimum supported client | Windows 8 |
|---|---|
|
Minimum supported server | Windows Server 2012 |
|
Namespace |
|
|
Metadata |
|
See also
- SourceRequested
- PlayToSourceRequest
- Samples
- Play To sample
- PlayToReceiver sample
- Media Server sample
Build date: 12/4/2012