MCPcopy Create free account
hub / github.com/NodeRT/NodeRT / IsMethodNotImplemented

Method IsMethodNotImplemented

src/NodeRTLib/Reflector.cs:653–666  ·  view source on GitHub ↗
(MethodInfo info)

Source from the content-addressed store, hash-verified

651 }
652
653 public static bool IsMethodNotImplemented(MethodInfo info)
654 {
655 // check for array out parameters, as we currnetly do not support this other then some specific cases
656 string dummy;
657 if (IsArrayAsOut(info, out dummy))
658 return false;
659
660 if (info.GetParameters().Where(pi => pi.IsOut && pi.ParameterType.IsArray).Count() > 0)
661 {
662 return true;
663 }
664
665 return false;
666 }
667
668 public static bool IsMethodNotImplemented(dynamic overloadsContainer)
669 {

Callers 3

Type.jsFile · 0.80
exportFunction · 0.80
foreachFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected