| SurveyFactoryCheckSurveysExistByPortalId Method |
Check if a collection of surveys exist given their Portal ids
Namespace:
AskiaCore
Assembly:
AskiaCore (in AskiaCore.dll) Version: 6.0.0-build000000000000000000000000000000000000000001
Syntax public static IDictionary<int, bool> CheckSurveysExistByPortalId(
IContext context,
IEnumerable<int> ids
)
Public Shared Function CheckSurveysExistByPortalId (
context As IContext,
ids As IEnumerable(Of Integer)
) As IDictionary(Of Integer, Boolean)
public:
static IDictionary<int, bool>^ CheckSurveysExistByPortalId(
IContext^ context,
IEnumerable<int>^ ids
)
Parameters
- context
- Type: AskiaCoreIContext
Context used to access the surveys - ids
- Type: System.Collections.GenericIEnumerableInt32
Collection of Portal ids of the surveys to access
Return Value
Type:
IDictionaryInt32,
BooleanReturn a dictionary mapped by survey Portal id, indicating if each survey exists
See Also