¡@

Home 

c# Programming Glossary: workstation

How to programmatically discover mapped network drives on system and their server names?

http://stackoverflow.com/questions/1088752/how-to-programmatically-discover-mapped-network-drives-on-system-and-their-serve

using C# determine the name or i.p. of servers to which my workstation has current maps. In other words at some point in Windows Explorer..

Lock Windows workstation programmatically in C#

http://stackoverflow.com/questions/1263047/lock-windows-workstation-programmatically-in-c-sharp

Windows workstation programmatically in C# I ran into this example for locking.. in C# I ran into this example for locking Windows workstation using System.Runtime.InteropServices ... DllImport user32.dll.. this snippet Namely without P Invoke. c# windows pinvoke workstation pure managed share improve this question No there is not...

Should we use “workstation” garbage collection or “server” garbage collection?

http://stackoverflow.com/questions/1707240/should-we-use-workstation-garbage-collection-or-server-garbage-collection

we use &ldquo workstation&rdquo garbage collection or &ldquo server&rdquo garbage collection.. mode garbage collection. However testing has shown that workstation mode GC is quicker. MSDN says Managed code applications that.. optimized garbage collector GC instead of the default workstation GC. Workstation is the default GC mode and the only one available..

Process.Start with different credentials with UAC on

http://stackoverflow.com/questions/2313553/process-start-with-different-credentials-with-uac-on

summary Method returns name of the user that logged in on workstation summary public static String GetLoggedInUserName String userName..

Accessing Password Protected Network Drives in Windows in C#?

http://stackoverflow.com/questions/2563724/accessing-password-protected-network-drives-in-windows-in-c

can generate a unique audit record that shows when the workstation was unlocked. summary Unlock 7 summary This logon type preserves..

DateTime vs DateTimeOffset

http://stackoverflow.com/questions/4331189/datetime-vs-datetimeoffset

is using the result is positioned. For example a user's workstation So then why DateTimeOffset instead of a UTC DateTime It's all..

How can I programmatically determine if my workstation is locked?

http://stackoverflow.com/questions/44980/how-can-i-programmatically-determine-if-my-workstation-is-locked

can I programmatically determine if my workstation is locked I'm writing up some productivity metrics tools for.. for me in this particular case. I wanted to run this on my workstation at work rather than home or in addition to home I suppose but..

Signing SOAP messages using X.509 certificate from WCF service to Java webservice

http://stackoverflow.com/questions/4666970/signing-soap-messages-using-x-509-certificate-from-wcf-service-to-java-webservic

a trusted CA that I installed where my WCF web service workstation dev is by using the mmc Certificate Snap in at the moment cert..

Checking for workstation lock/unlock change with c#

http://stackoverflow.com/questions/603484/checking-for-workstation-lock-unlock-change-with-c-sharp

for workstation lock unlock change with c# DUPLICATE How can I programmatically.. c# DUPLICATE How can I programmatically determine if my workstation is locked How can I detect during runtime when a Windows user..

How do I detect a Lock This Computer command from a WPF application?

http://stackoverflow.com/questions/652550/how-do-i-detect-a-lock-this-computer-command-from-a-wpf-application

or tray icon. It needs to detect if a user locks his her workstation and walks away in order to update the person's status in a centralized..

Large Object Heap Fragmentation

http://stackoverflow.com/questions/686950/large-object-heap-fragmentation

the object array size is 528 rather than 1056 because my workstation is 32 bit and the application server is 64 bit. The object arrays..

Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()?

http://stackoverflow.com/questions/815586/entity-framework-using-transactions-or-savechangesfalse-and-acceptallchanges

How can I generate a cryptographically secure pseudorandom number in C#?

http://stackoverflow.com/questions/1668353/how-can-i-generate-a-cryptographically-secure-pseudorandom-number-in-c

Should we use “workstation” garbage collection or “server” garbage collection?

http://stackoverflow.com/questions/1707240/should-we-use-workstation-garbage-collection-or-server-garbage-collection

collector GC instead of the default workstation GC. Workstation is the default GC mode and the only one available on single.. and the only one available on single processor computers. Workstation GC is hosted in console and Windows Forms applications. It performs..

Simulating input in Windows logon screen, using a driver

http://stackoverflow.com/questions/9652358/simulating-input-in-windows-logon-screen-using-a-driver

continues capturing the screen at the Switch Users or Workstation Locked screen and allows the remote user to type in the password..

Monitoring Garbage Collector in C#

http://stackoverflow.com/questions/9669963/monitoring-garbage-collector-in-c-sharp

are two modes of Garbage Collection in .NET the Server and Workstation. They both collect the same unused memory however the way it's.. below. Each thread acts like the non concurrent version. Workstation Version This mode tells GC you're using a client side application... one GC thread. However there are two configurations of the Workstation version concurrent and non concurrent. Concurrent This is the..