|  | RestClientBaseGetTResult Method (String, KeyValuePairString, String) | 
 
            Fetches the specified result from the server
            
 
    Namespace: 
   SanteDB.Core.Http
    Assembly:
   SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
 Syntax
Syntaxpublic TResult Get<TResult>(
	string url,
	params KeyValuePair<string, string>[] query
)
Public Function Get(Of TResult) ( 
	url As String,
	ParamArray query As KeyValuePair(Of String, String)()
) As TResult
public:
generic<typename TResult>
TResult Get(
	String^ url, 
	... array<KeyValuePair<String^, String^>>^ query
)
member Get : 
        url : string * 
        query : KeyValuePair<string, string>[] -> 'TResult 
Parameters
- url
- Type: SystemString
 The resource URL to fetch from the server
- query
- Type: System.Collections.GenericKeyValuePairString, String
 The query to be executed on th eserver
Type Parameters
- TResult
- The expected result from the server
Return Value
Type: 
TResult[Missing <returns> documentation for "M:SanteDB.Core.Http.RestClientBase.Get``1(System.String,System.Collections.Generic.KeyValuePair{System.String,System.String}[])"]
 See Also
See Also