You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewNotImplementedException($"{parameterData.Parameter.AnyTypeOrVarArgs}: record with direction != in not yet supported");
32
-
33
31
if(!parameterData.Parameter.IsPointer)
34
32
thrownewNotImplementedException($"Unpointed record parameter {parameterData.Parameter.Name} ({parameterData.Parameter.AnyTypeOrVarArgs}) can not yet be converted to managed");
35
33
34
+
switch(parameterData.Parameter.Direction)
35
+
{
36
+
caseDirection.In:
37
+
InRecord(parameterData);
38
+
break;
39
+
caseDirection.Out:
40
+
OutRecord(parameterData);
41
+
break;
42
+
default:
43
+
thrownewNotImplementedException($"{parameterData.Parameter.AnyTypeOrVarArgs}: record with direction {parameterData.Parameter.Direction} not yet supported");
0 commit comments