我正在尝试反编译System.IdentityModel.Services.dll
,但没有一个反编译工具显示方法详细信息
我什至无法在 ILDASM 中获得这些方法的 IL。ILSpy 也是如此。
例如: System.IdentityModel.Services.SessionAuthenticationModule
伊尔达斯姆:
.method family hidebysig newslot virtual
instance void OnAuthenticateRequest(object sender,
class [mscorlib]System.EventArgs eventArgs) cil managed
{
// Code size 0 (0x0)
} // end of method SessionAuthenticationModule::OnAuthenticateRequest
.method family hidebysig instance class [mscorlib]System.Collections.ObjectModel.ReadOnlyCollection`1<class [mscorlib]System.Security.Claims.ClaimsIdentity>
ValidateSessionToken(class [System.IdentityModel]System.IdentityModel.Tokens.SessionSecurityToken sessionSecurityToken) cil managed
{
// Code size 0 (0x0)
} // end of method SessionAuthenticationModule::ValidateSessionToken
我原以为至少 IL 总是可用的。不是这样吗?