There are methods to tracking call's in MVC .NET? [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I m working with a large project whith meets in mvc c# and looking for methods (plugins for visual studio, addons, frameworks) for tracking object in controller,views during the app works. Any methods exist for that ? I do not want use logging via nlog or log4net.

Try Application Insights (https://learn.microsoft.com/en-us/azure/application-insights/app-insights-overview). It integrated very nice in Visual Studio, has a free plan as well and is created for scenario's like this.
Just to satisfy my curiosity, why do you not want to use a logging framework?

Related

Azure Function .NET Core 3.1 C# unit test case with nUnit [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I need to create a unit test cases in Azure Function .NET Core using C# and NUnit framework. Please share a good example with links.
Thanks in advance.
Your unit tests shouldn’t include the Function App entry point, just like they shouldn’t include Asp.Net controllers, or the Main method of a Console app.

Script engine for C# application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need to include in an application I am developing, a feature to allow easy customization of a module. In fact it will be nice to use some kind of scripting to modify the behaviour of a calculation process that the application provides. I am developing the application in C# and Roslyn... but how can I pass a context (parameters and values) to a Roslyn script and receive a response back?
If C# is appropriate language for your case Roslyn is a good choice.
Take a look at Microsoft.CodeAnalysis.CSharp.Scripting NuGet package. It allows to execute pieces of C# code stored in plain strings.
For example:
await CSharpScript.EvaluateAsync("Console.WriteLine(\"Hello world!\")");

Looking for a management like JMX for .net web applications [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is there any way to expose public static function for invocation to an outside tool?
In java you can annotate the method and than you can invoke it via JMX.
I am talking about c# .NET web application.
Thanks
There are nothing standard and built in. You can manually create a page and assign appropriate methods for button handlers manually, and provide all layout for input parameters. Less intuitive and usability way (and more dangerous) doing this via query string parameters, but I would not recommend this.

Does anybody know Yammer-like app, developed using C#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
all
I found Yammer a very useful, and great app, but i want to extend it somehow.
And want to have it installed as on-premise solution.
Maybe someone know alternative for it, but developed using C#?
Thx
There exist many open-source self-hosted alternatives to Yammer, such as StatusNet and Laconi.ca, but unfortunately, most of them are in PHP/MySQL.
Currently, Leiha is your best bet.

Where can I find open source applications that use lucene.net [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for any open source application that uses lucene.net. I am working on a complicated web application and would like to see how others have implemented lucene.net.
I think Raven DB uses it under the hood.
The latest release (2.5) of SubText uses it.

Categories