Profiler load path for 32/64-bit architectures (COR_PROFILER_PATH variable)
Hi, According to this page (https://msdn.microsoft.com/en-us/library/ee471451(v=vs.100).aspx) since .NET v4 the framework supports selection of the profiler DLL location using COR_PROFILER_PATH...
View Articlehow to get an object which contain an specific class object. reflect
for example. I have an class B instance object B1.there is another struct c's class B property also is reference B1. such as c.Bproperty = B1. And another struct d's class B property also is...
View ArticleEntity Framework with root object
I have db entity which has property as collection of another object. public class MyObject { public int MyObjectId{get;set} public string Name{get; set;} public List<MyObject1> MyObjects1{get;...
View Articlehow to get an object which contain an specific class object. reflect
for example. I have an class B instance object B1.there is another struct c's class B property also is reference B1. such as c.Bproperty = B1. And another struct d's class B property also is...
View Article.NET Instrumentation - Call to Custom Assembly Fails - COR PROFILER
I am trying to deploy my .NET Instrumentation profiler into Azure web apps. Using COR_PROFILER_32 and *_64 and COR_PROFILING_ENABLED i am enabling my profiler in Azure web app. My profiler will...
View ArticleSystem.TypeLoadException:EncryptCallDll has no implementation (no RVA)....
I am using a dll in my web service(asp) like this: [DllImport("CEracom.dll", EntryPoint = "InitializeCall")] public static extern int InitializeCallDll(string szSlotName, string szPassword);...
View ArticleCode injection does not work with MSCorLib in .Net 2.x
In our .Net application, we want to keep track of a file that is getting opened through .Net Code. Any file that is getting opened, execution call always pass through an internal instance method...
View ArticleRegistryKey.GetValue for WinLogon Fails to Return All Values
When using RegistryKey.GetValueNames to retrieve the values of "LOCALMACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon", not all values of the key are returned. It only returns 10 values,...
View ArticleShort Cut to my application running in the System tray
HiI have an VB.Net application running in the System Tray and I have a function in the appln. I need to invoke the function irrespective of the application which is active by assigning a global...
View ArticleHow to extract function argument and return value through .NET profiler API ?
Through Profiler Api we can track the current methods and their performance. but can we do capture the function argument parameter and their return value as also?Suppose below is a use case :...
View Article.NET Standard and .NET Framework and .NET Core
Hi,I am a dotnet developer. Now I am thinking to develop a Nuget package so that It can be occupied by other developers.I am little bit confuse about deciding targeting framework. I have't work on .NET...
View ArticleGet MethodBase from IL Method Name string
Hi!I'm writing my own programming language in C# and I want use this feature for importing dotnet static methods.I need to convert a string like `[mscorlib]System.Console.WriteLine(System.String)` to a...
View Articleunable to launch iis express web server visual studio 2015
unable to launch iis express web server visual studio 2015 is coming after window 10 update. please provide solution.
View Article.net Web Application Hangs When Finalizer Gets Blocked
We have one application runnnig for more a year, and and since 2 months ago it becomes to hang. In the meanwhile we're able to get two dumps of the hung process, and te results were analyzed by...
View ArticleOnPropertyChanged causes massive amount of Action allocations
(This is a crosspost from: https://stackoverflow.com/questions/51799253/onpropertychanged-causes-massive-amount-of-action-allocations)I have a WPF application which displays images in a grid. The user...
View ArticleFIPS validated cryptographic algorithms
I have enabled the FIPS algorithm policy on our windows server2008 machine. Now, any page that has a viewstate is abending with the following error: This implementation is not part of the Windows...
View ArticleWe are facing some problem after updating the following patch - KB4340558
We are facing some problem after updating the following patch - https://support.microsoft.com/en-ph/help/4340558/security-and-quality-rollup-updates-for-net-framework-3-5-sp1-4-5-2-4 Problem: We have a...
View ArticleHow to expose an enum defined in a COM libraryusing php?
Hello! I have a problem...help me please.. I have a COM library (writen in C#, named as Lib) with such enum: enum DECLSPEC_UUID("***") COLOR { RED= 1, BLUE= 2, CREEN= 3, } ;...
View ArticleDetermine FIPS Algorithm Policy seting in use NOT the registry value
Is there a way to check if a user is allowed to use non FIPS 140-2 security algorithmsI know you can look at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy and it MIGHT...
View ArticleWhen framework instantiates Static class?
Hello,I know we can not create instance of static class, however can someone tell me how .net framework instantiates Static class.
View Article