Click here to Skip to main content
15,887,083 members
Home / Discussions / C#
   

C#

 
QuestionWindows Service Credentials Pin
Sangioo17-Sep-09 2:09
Sangioo17-Sep-09 2:09 
QuestionContext menu for a text box. Pin
Pavan Navali17-Sep-09 1:45
Pavan Navali17-Sep-09 1:45 
AnswerRe: Context menu for a text box. Pin
Not Active17-Sep-09 1:49
mentorNot Active17-Sep-09 1:49 
GeneralRe: Context menu for a text box. Pin
Pavan Navali17-Sep-09 18:26
Pavan Navali17-Sep-09 18:26 
GeneralRe: Context menu for a text box. Pin
Not Active18-Sep-09 1:43
mentorNot Active18-Sep-09 1:43 
Questiondisabled hyperlink and write arrow cursor Pin
Idoshhh17-Sep-09 1:17
Idoshhh17-Sep-09 1:17 
AnswerRe: disabled hyperlink and write arrow cursor Pin
Not Active17-Sep-09 1:53
mentorNot Active17-Sep-09 1:53 
Questionmeasure received data/s for an udp multicast address [modified] Pin
collapo17-Sep-09 1:08
collapo17-Sep-09 1:08 
Hi
I'm trying to measure data from a multicast udp address.

To do this, i use a socket added to multicastgroup and this code:

while (!b)
{
    byte[] buffer = new byte[udpReceiver.Available];
    udpReceiver.Receive(buffer, 0, buffer.Length, SocketFlags.None, out err);
    if ((DateTime.Now - starttime).TotalSeconds < ((double)elem.timetowatch_ms / 1000))
    {
        newvalue += (ulong)buffer.Length;
    }
    else
    {
        newvalue += (ulong)buffer.Length;
        receivedByteNumber = ((Convert.ToUInt64((double)newvalue / (DateTime.Now - starttime).TotalSeconds)) / 128);
        newvalue = 0;
        starttime = DateTime.Now;
        b = true;
    }
 }


my problem that it is using about 50% of cpu time and if i place it in a thread
it shows less data (~4000kbits/sec) than if it is placed on a main thread (~7000) - possibly because of system time management, but i'm unsure.

Any better suggestion on data measuring on multicast udp with less cpu and regardless of this threadproblem?

Thanks in advance:
Collapo

modified on Thursday, September 17, 2009 7:14 AM

AnswerRe: measure received data/s for an udp multicast address Pin
Luc Pattyn17-Sep-09 2:32
sitebuilderLuc Pattyn17-Sep-09 2:32 
GeneralRe: measure received data/s for an udp multicast address Pin
collapo17-Sep-09 3:16
collapo17-Sep-09 3:16 
GeneralRe: measure received data/s for an udp multicast address Pin
Luc Pattyn17-Sep-09 3:23
sitebuilderLuc Pattyn17-Sep-09 3:23 
GeneralRe: measure received data/s for an udp multicast address Pin
collapo17-Sep-09 4:17
collapo17-Sep-09 4:17 
QuestionAPI in C# Pin
vahid_erad17-Sep-09 0:54
vahid_erad17-Sep-09 0:54 
AnswerRe: API in C# Pin
Calla17-Sep-09 1:11
Calla17-Sep-09 1:11 
AnswerRe: API in C# Pin
Arun Jacob17-Sep-09 1:21
Arun Jacob17-Sep-09 1:21 
AnswerRe: API in C# Pin
Harvey Saayman17-Sep-09 1:52
Harvey Saayman17-Sep-09 1:52 
QuestionOmitting HTML footer ? Pin
Mohammad Dayyan17-Sep-09 0:47
Mohammad Dayyan17-Sep-09 0:47 
AnswerRe: Omitting HTML footer ? Pin
Not Active17-Sep-09 1:45
mentorNot Active17-Sep-09 1:45 
GeneralRe: Omitting HTML footer ? Pin
Mohammad Dayyan17-Sep-09 2:12
Mohammad Dayyan17-Sep-09 2:12 
GeneralRe: Omitting HTML footer ? Pin
Not Active17-Sep-09 2:34
mentorNot Active17-Sep-09 2:34 
QuestionTCP Socket issue Pin
Harvey Saayman17-Sep-09 0:43
Harvey Saayman17-Sep-09 0:43 
AnswerRe: TCP Socket issue Pin
harold aptroot17-Sep-09 3:17
harold aptroot17-Sep-09 3:17 
GeneralRe: TCP Socket issue Pin
Harvey Saayman17-Sep-09 3:26
Harvey Saayman17-Sep-09 3:26 
GeneralRe: TCP Socket issue Pin
harold aptroot17-Sep-09 3:30
harold aptroot17-Sep-09 3:30 
GeneralRe: TCP Socket issue Pin
Harvey Saayman17-Sep-09 5:04
Harvey Saayman17-Sep-09 5:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.