DataServiceContext.GetReadStreamUri Method (Object, String)
Gets the URI that is used to return a named binary data stream.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public Function GetReadStreamUri ( _
entity As Object, _
name As String _
) As Uri
'Usage
Dim instance As DataServiceContext
Dim entity As Object
Dim name As String
Dim returnValue As Uri
returnValue = instance.GetReadStreamUri(entity, _
name)
public Uri GetReadStreamUri(
Object entity,
string name
)
public:
Uri^ GetReadStreamUri(
Object^ entity,
String^ name
)
member GetReadStreamUri :
entity:Object *
name:string -> Uri
public function GetReadStreamUri(
entity : Object,
name : String
) : Uri
Parameters
- entity
Type: System.Object
The entity that has the named binary data stream to retrieve.
- name
Type: System.String
The name of the stream to request.
Return Value
Type: System.Uri
The read URI of the binary data stream.