Session.SetPrefOnly Method |
Set a value into this session's preference collection, but do not set the value
on the session itself.
Use the
SetValue(String, Object, String, String) method to set both the preference and session member value.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic void SetPrefOnly(
string name,
Object value,
string ownerID,
string ownerLevel
)
Public Sub SetPrefOnly (
name As String,
value As Object,
ownerID As String,
ownerLevel As String
)
Parameters
- name
- Type: System.String
The name of the value to set. - value
- Type: System.Object
The value to which to set it. - ownerID
- Type: System.String
The ID owner of the item. - ownerLevel
- Type: System.String
The level of the owner of the item.
See Also