 | DefaultUpstreamIntegrationServiceGetTModel(Guid, NullableGuid, UpstreamIntegrationQueryControlOptions) Method |
Gets a specified model.
Namespace: SanteDB.Client.Upstream.ManagementAssembly: SanteDB.Client (in SanteDB.Client.dll) Version: 3.0.2081-alpha+027e4605b77f83de5445cbcd55717223932d2452
Syntaxpublic TModel Get<TModel>(
Guid key,
Guid? versionKey,
UpstreamIntegrationQueryControlOptions options = null
)
where TModel : IdentifiedData
Public Function Get(Of TModel As IdentifiedData) (
key As Guid,
versionKey As Guid?,
Optional options As UpstreamIntegrationQueryControlOptions = Nothing
) As TModel
public:
generic<typename TModel>
where TModel : IdentifiedData
virtual TModel Get(
Guid key,
Nullable<Guid> versionKey,
UpstreamIntegrationQueryControlOptions^ options = nullptr
) sealed
abstract Get :
key : Guid *
versionKey : Nullable<Guid> *
?options : UpstreamIntegrationQueryControlOptions
(* Defaults:
let _options = defaultArg options null
*)
-> 'TModel when 'TModel : IdentifiedData
override Get :
key : Guid *
versionKey : Nullable<Guid> *
?options : UpstreamIntegrationQueryControlOptions
(* Defaults:
let _options = defaultArg options null
*)
-> 'TModel when 'TModel : IdentifiedDataParameters
- key Guid
- The key of the model.
- versionKey NullableGuid
- The version key of the model.
- options UpstreamIntegrationQueryControlOptions (Optional)
- The integrations query options.
Type Parameters
- TModel
- The type of model data to retrieve.
Return Value
TModelReturns a model.
Implements
IUpstreamIntegrationServiceGetTModel(Guid, NullableGuid, UpstreamIntegrationQueryControlOptions)
See Also