SnapStreamingServerUserCanMatch Property
Gets or sets any defined user read access control function for match filters.
Namespace: SnapDB.Snap.Services.NetAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public Func<string, Object, Object, bool>? UserCanMatch { get; set; }
Public Property UserCanMatch As Func(Of String, Object, Object, Boolean)
Get
Set
public:
property Func<String^, Object^, Object^, bool>^ UserCanMatch {
Func<String^, Object^, Object^, bool>^ get ();
void set (Func<String^, Object^, Object^, bool>^ value);
}
function get_UserCanMatch();
function set_UserCanMatch(value);
Property Value
FuncString,
Object,
Object,
Boolean
Function parameters are:
string UserId - The user security ID (SID) of the user attempting to match.
TKey instance - The key of the record being matched.
TValue instance - The value of the record being matched.
bool - Return true if user is allowed to match; otherwise, false.