Click here to Skip to main content
15,885,876 members
Home / Discussions / C#
   

C#

 
AnswerRe: xmpp Pin
Richard MacCutchan10-May-13 3:44
mveRichard MacCutchan10-May-13 3:44 
QuestionAbout xmpp n bosh server Pin
Member 1004242210-May-13 1:46
Member 1004242210-May-13 1:46 
AnswerRe: About xmpp n bosh server Pin
Pete O'Hanlon10-May-13 2:13
mvePete O'Hanlon10-May-13 2:13 
QuestionExport to PST Pin
JD869-May-13 14:29
JD869-May-13 14:29 
QuestionProper Use of a Semaphore Pin
Richard Andrew x649-May-13 14:14
professionalRichard Andrew x649-May-13 14:14 
AnswerRe: Proper Use of a Semaphore Pin
SledgeHammer019-May-13 17:05
SledgeHammer019-May-13 17:05 
GeneralRe: Proper Use of a Semaphore Pin
Richard Andrew x6410-May-13 6:10
professionalRichard Andrew x6410-May-13 6:10 
Questionhow do i display http fields Pin
mais irreem9-May-13 3:35
mais irreem9-May-13 3:35 
hi
how are you
as i see you answer many questions about the http packet
and if you can help me please i will be very thankful for you
i am new in the programing in c# language
i have a pcap file , i open it in wiresharh program.
i nead to read this pcap file (which it is saved on my pc in a specific folder) in c# and display specific fields( time of the packet, ip source , ip destination , info(as it apear in wireshark) )
but not for all pachets just for the http protocol(as it aprear in wireshark)
i am using the (Tamir.IPLib.Packets) library and i program this

private static void device_PcapOnPacketArrival(object sender, Packet packet)
{
if( packet is IPPacket)
{
IPPacket etherFrame = (IPPacket)packet;
Console.WriteLine("time {0}, source ip address {1}, destination ip address {2} ",
etherFrame.Timeval.Seconds,
etherFrame.SourceAddress,
etherFrame.DestinationAddress);
}
}
this program print the fields (time ,source ip ,detination ip) but for all the packets
how can i specific just for the http protocol ( as it appear in wireshark)
thanks for your time
can you answer me on my email
mais_irreem@yahoo.com
AnswerRe: how do i display http fields Pin
OriginalGriff9-May-13 3:54
mveOriginalGriff9-May-13 3:54 
QuestionHTML, RTF or WordML? Pin
Jassim Rahma8-May-13 23:47
Jassim Rahma8-May-13 23:47 
AnswerRe: HTML, RTF or WordML? Pin
Abhinav S9-May-13 0:33
Abhinav S9-May-13 0:33 
AnswerRe: HTML, RTF or WordML? Pin
Dave Kreskowiak9-May-13 1:40
mveDave Kreskowiak9-May-13 1:40 
QuestionLogin Form in Visual studio 2008 c# Pin
Akash Bharatvala8-May-13 23:18
Akash Bharatvala8-May-13 23:18 
AnswerRe: Login Form in Visual studio 2008 c# Pin
Abhinav S9-May-13 0:23
Abhinav S9-May-13 0:23 
AnswerRe: Login Form in Visual studio 2008 c# Pin
Bikash Prakash Dash12-May-13 21:48
Bikash Prakash Dash12-May-13 21:48 
QuestionPerformance issue using Multi threading in Net 3.5 Pin
KIDYA8-May-13 20:35
KIDYA8-May-13 20:35 
AnswerRe: Performance issue using Multi threading in Net 3.5 Pin
Abhinav S8-May-13 21:10
Abhinav S8-May-13 21:10 
GeneralRe: Performance issue using Multi threading in Net 3.5 Pin
KIDYA8-May-13 21:37
KIDYA8-May-13 21:37 
AnswerRe: Performance issue using Multi threading in Net 3.5 Pin
Abhinav S9-May-13 0:09
Abhinav S9-May-13 0:09 
GeneralRe: Performance issue using Multi threading in Net 3.5 Pin
harold aptroot8-May-13 21:44
harold aptroot8-May-13 21:44 
GeneralRe: Performance issue using Multi threading in Net 3.5 Pin
KIDYA8-May-13 23:25
KIDYA8-May-13 23:25 
GeneralRe: Performance issue using Multi threading in Net 3.5 Pin
harold aptroot8-May-13 23:37
harold aptroot8-May-13 23:37 
GeneralRe: Performance issue using Multi threading in Net 3.5 Pin
KIDYA9-May-13 0:08
KIDYA9-May-13 0:08 
QuestionNeed your opinion on querying data for presentation on winforms / web page and for reports Pin
Nayan Ambaliya8-May-13 15:03
Nayan Ambaliya8-May-13 15:03 
QuestionRe: Need your opinion on querying data for presentation on winforms / web page and for reports Pin
Richard MacCutchan8-May-13 20:43
mveRichard MacCutchan8-May-13 20:43 

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.