| ObjectExpanderExpandProperties Method |
Expand properties
Namespace:
SanteDB.Rest.Common
Assembly:
SanteDB.Rest.Common (in SanteDB.Rest.Common.dll) Version: 2.2.1
Syntax public static void ExpandProperties(
IdentifiedData returnValue,
NameValueCollection qp,
Stack<Guid> keyStack = null,
Dictionary<Guid, HashSet<string>> emptyCollections = null
)
Public Shared Sub ExpandProperties (
returnValue As IdentifiedData,
qp As NameValueCollection,
Optional keyStack As Stack(Of Guid) = Nothing,
Optional emptyCollections As Dictionary(Of Guid, HashSet(Of String)) = Nothing
)
public:
static void ExpandProperties(
IdentifiedData^ returnValue,
NameValueCollection^ qp,
Stack<Guid>^ keyStack = nullptr,
Dictionary<Guid, HashSet<String^>^>^ emptyCollections = nullptr
)
static member ExpandProperties :
returnValue : IdentifiedData *
qp : NameValueCollection *
?keyStack : Stack<Guid> *
?emptyCollections : Dictionary<Guid, HashSet<string>>
(* Defaults:
let _keyStack = defaultArg keyStack null
let _emptyCollections = defaultArg emptyCollections null
*)
-> unit
Parameters
- returnValue
- Type: SanteDB.Core.ModelIdentifiedData
The return value. - qp
- Type: SanteDB.Core.Model.QueryNameValueCollection
The qp. - keyStack (Optional)
- Type: System.Collections.GenericStackGuid
The key stack. - emptyCollections (Optional)
- Type: System.Collections.GenericDictionaryGuid, HashSetString
The empty collections.
See Also