我的ASP.NET Core应用程序使用VB.net库,该库需要了解当前用户的特权。它之前使用过sp9 <- ggplot(PWPdf3_12_1250, aes(log10(Avsize), log10(Prob))) +
geom_point(color= "blue")
plotx <- ggplot(mpg, aes(displ, hwy)) +
geom_point() +
geom_point(color= "blue")
#plot example from internet
plotx +
annotation_custom(
ggplotGrob(sp9),
xmin = 5, xmax = 7, ymin = 30, ymax = 44
)
#plotting my own data
sp9+
annotation_custom(
ggplotGrob(sp9),
xmin = 5, xmax = 7, ymin = 30, ymax = 44
)
调用,但是在asp.net核心中它带有以下异常:
System.TypeLoadException:'无法加载类型 程序集中的“ Microsoft.VisualBasic.ApplicationServices.User” 'Microsoft.VisualBasic,版本= 10.0.4.0,文化=中性, PublicKeyToken = b03f5f7f11d50a3a'。
我也尝试使用My.User.IsInRole(ApplicationServices.BuiltInRole.Administrator)
但是这个不会加载System.Web.Security.Roles.IsUserInRole("Administrators")
还有另一种方法吗?