What is the repeater process?

I was working on an ASP.NET web form project and tried to connect a data source to a relay using a wizard. The Visual Studio window unexpectedly hung for a few seconds, and during that time I saw a window with a smaller pop-up window: enter image description here .

Can someone please tell me what it is? And why is its default icon for Windows Forms? Is this some kind of internal process of Visual Studio?

+5
source share
1 answer

This seems to be a background task that Visual Studio uses to create your code to ensure that the points are connected when creating the data source.

The bottom line is that it goes through your code, checks the objects for links to your data source and sets the parameters that you added to the wizard.

+3
source

Source: https://habr.com/ru/post/1201180/


All Articles