My account: Login | Sign Up
Loading... 

Configuration locking in microsoft.public.dotnet.framework | Thread profile

Thread profile page for "Configuration locking in microsoft.public.dotnet.framework" on http://www.microsoft.com/communities/newsgroups.... This report page is a snippet summary view from a single thread "Configuration locking in microsoft.public.dotnet.framework", located on the Message Board at http://www.microsoft.com/communities/newsgroups.... This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity, which are reported in a table below. Additional thread profile information is also shown in the following ways:

1) Top Contributing Authors
2) Related Threads on "eBay Auctions"
3) Related Threads on Other Sites

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a thread's popularity and/or exact posting volumes at any given reporting period.

Title: Configuration locking in microsoft.public.dotnet.framework
Site: Discussions in microsoft.public.dotnet.framework  Discussions in microsoft.public.dotnet.framework - site profile
Forum: microsoft.public.dotnet.framework  microsoft.public.dotnet.framework - forum profile
Total authors: 2 authors
Total thread posts: 2 posts
Thread activity: no new posts during last week
Domain info for: microsoft.com

Thread posts in Configuration locking in microsoft.public.dotnet.framework:

1. 
Started 1 month, 3 weeks ago (2008-10-14 09:31:00)  by Ralf
Hi, in an application I'm using a non trivial configuration, implemented with classes from the System.Configuration namespace. The parameters will be written to the app.exe.config file. My application is stored on a network device and can be used from more than one user at the same time. To prevent the parameters for ...
Size: 1,505 bytes
Customize:  Customize "Configuration locking in microsoft.public.dotnet.framework :: microsoft.public.dotnet.framework :: Discussions in microsoft.public.dotnet.framework"
2. 
Started 1 month, 3 weeks ago (2008-10-14 13:30:00)  by Cowboy (Gregory A. Beamer)
The lock works quite a bit like a lock on a thread, only there is far less information you can get from it. If you want something more full featured, you will have to build your own. Before doing that, consider the next question and response very carefully: How often are you updating configs on a multi-user application? If the...
Size: 2,908 bytes
Customize:  Customize "<b>Reply 1</b>: Configuration locking in microsoft.public.dotnet.framework :: microsoft.public.dotnet.framework :: Discussions in microsoft.public.dotnet.framework"
 

Top contributing authors for Configuration locking in microsoft.public.dotnet.framework

Name
Posts
Cowboy (Gregory A. Beamer)
1
user's latest post:
Configuration locking in...
Published (2008-10-14 13:30:00)
&nbsp; The lock works quite a bit like a lock on a thread, only there is far less information you can get from it. If you want something more full featured, you will have to build your own. Before doing that, consider the next question and response very carefully: How often are you updating configs on a multi-user application? If the values you are looking at are routinely changed, they would be better in a persistant store than a...
Ralf
1
user's latest post:
Configuration locking in...
Published (2008-10-14 09:31:00)
&nbsp; Hi, in an application I'm using a non trivial configuration, implemented with classes from the System.Configuration namespace. The parameters will be written to the app.exe.config file. My application is stored on a network device and can be used from more than one user at the same time. To prevent the parameters for competing access, I want to lock the parameters during one user is editing these parameters. The...