First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
about stopping threads and critical regions
Hello! Here is some text from a book. "Controlling threads in your applications often requires that you be able to stop threads. The primary mechanism for stopping threads is to use the Thread.Abort method. When the Thread.Abort method is called, the threading system prepares to throw a ThreadAbortException in t... 19 Jun 2010 22:11
HttpWebRequest issue with HTTPS via WP7 Silverlight
Hi everyone! I'm trying to get a session ID from a HTTPS web site, but keep getting a webexception. I read on a web site that silverlight does not support HTTPS via the HttpWebRequest, but it did not tell me why, or what to do about it. Can anybody help me out? Thanks in advance! btw... i couldn't see ... 19 Jun 2010 10:11
Content Type not recongnized
Hello, I am uploading a file on a Web Application which is a PDF document. However, for the content type I get "application/octet-stream" instead of "application/pdf". Do I need to install Adobe Acrobat Reader on the system so that a PDF file is recongnized? Thanks, Miguel ... 18 Jun 2010 14:40
Why do ManagedThreadId start counting from 3
Hello! If I run the program below will the ManagedThreadId start counting from 3 so the output in SimpleWork is like this. So why will the ManagedThreadId start counting from 3 ? Thread: 3 Thread: 4 Thread: 5 Thread: 3 Thread: 4 Thread: 5 Thread: 3 Thread: 4 Thread: 5 Thread: 3 Thread: 4 Thread: 5 Th... 22 Jun 2010 06:07
Detecting OS ? (mono/.NET)
In Mono 1.x, the Platform property of OperatingSystem contained 128, because there was no PlatformID.Unix. In Mono 2.x, the PlatformID.Unix was added (with an enumeration value of 4). So, if the code needs to run in both 1.x and 2.x Mono environments, the code should check for both values: 128 (for the 1.x environmen... 17 Jun 2010 19:01
How does initializing inherited members inside base class constructor reduce the calls to…?
I’ve at the following link http://books.google.com/books?id=VGT1_UJzjM0C&lpg=PP1&dq=pro%20c%23%202008&pg=PA193#v=onepage&q&f=false that instead of initializing inherited members ( _c1 in our example ) inside derived constructor: class A { public int _c; } class B:A { public B(int c) { ... 19 Jun 2010 04:48
Thread.join
Hello! As I understand the join method on a thread object you must have at least two threads where one thread is waiting for another thread to complete this mean calling join on the main thread will cause the main thread to hang waiting for itself which is not possible. So is my understanding correct here ?... 21 Jun 2010 23:37
Stop Windows Service
Hi, What is the normal way to stop a servie from within the servie itself ?? BR Peter ... 22 Jun 2010 03:56
Chart
I create Chart, but compared to Visual Basic that provides Mschart, environment. NET seems not to have a similar component. What is the best and easiest way to create graphs? I need to create multiple charts in the same form. Thank you. ... 17 Jun 2010 04:37
about ThreadState
Hello! There is one state in the Enumeration ThreadState that is called Background which I don't consider a state. I mean if you have a thread that is a Background and is running then you have two states. All the other states in ThreadState is more valid as a state. So if you have Background as a state why n... 17 Jun 2010 02:29
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19