(Assembly assembly, string winRTNamespace)
| 111 | } |
| 112 | |
| 113 | private static bool VerifyNamespaceInAssembly(Assembly assembly, string winRTNamespace) |
| 114 | { |
| 115 | foreach (var t in assembly.ExportedTypes) |
| 116 | { |
| 117 | if (t.Namespace.Equals(winRTNamespace, StringComparison.InvariantCultureIgnoreCase)) |
| 118 | { |
| 119 | return true; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | return false; |
| 124 | } |
| 125 | |
| 126 | public static dynamic GenerateModel(Assembly assembly, string winRTNamespace) |
| 127 | { |
nothing calls this directly
no outgoing calls
no test coverage detected