Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
AnswerRe: Serialization problem Pin
Manoj Kumar Rai25-May-07 4:36
professionalManoj Kumar Rai25-May-07 4:36 
GeneralRe: Serialization problem Pin
Mark F.25-May-07 5:01
Mark F.25-May-07 5:01 
QuestionDesigning MenuStrip in derived form Pin
Evil_Giraffe25-May-07 3:27
Evil_Giraffe25-May-07 3:27 
QuestionHow to Identify mail Language? Pin
ArunkumarSundaravelu25-May-07 2:44
ArunkumarSundaravelu25-May-07 2:44 
AnswerRe: How to Identify mail Language? Pin
Paddy Boyd25-May-07 2:59
Paddy Boyd25-May-07 2:59 
GeneralRe: How to Identify mail Language? Pin
ArunkumarSundaravelu25-May-07 3:04
ArunkumarSundaravelu25-May-07 3:04 
AnswerRe: How to Identify mail Language? Pin
Muammar©25-May-07 7:34
Muammar©25-May-07 7:34 
GeneralRe: How to Identify mail Language? Pin
ArunkumarSundaravelu28-May-07 0:09
ArunkumarSundaravelu28-May-07 0:09 
Hi Muammar

thanks for your response.
The property as you mentioned is "BodyEncoding".
which was not found in webdav method, how can i fetch the value of the BodyEncoding Property.

I use the below coding using search method of webdav.

Please suggest me.

///////////////////<


string strXML;
string strInboxURL = "http" + "://" + strServerName + "/exchange/" + strUserName + "/" + strFolderName;

MSXML2.XMLHTTP objXMLHTTP = new MSXML2.XMLHTTP();
System.Xml.XmlDataDocument xmlDOMParams = new System.Xml.XmlDataDocument();

objXMLHTTP.open("SEARCH", strInboxURL, false, strAliasName,strPassword);
objXMLHTTP.setRequestHeader("Content-type", "text/xml");
objXMLHTTP.setRequestHeader("Depth", "1");



strXML = "" +
" = \'DAV:\'>" +
"" +
"SELECT \"urn:schemas:httpmail:fromemail\"," +
"\"urn:schemas:mailheader:cc\"," + //
"\"urn:schemas:httpmail:displayto\"," +
"\"urn:schemas:mailheader:thread-topic\"," +
"\"urn:schemas:httpmail:to\"," +
"\"DAV:displayname\"" +
" FROM scope(\'shallow traversal of " + "\"" + strInboxURL + "\"\')" +
" WHERE \"DAV:ishidden\"=" + "false" +
" AND \"urn:schemas:httpmail:read\"=" + "false" +
" AND \"DAV:isfolder\"=" + "false"+
"" +
"";

objXMLHTTP.send(strXML);
xmlDOMParams.LoadXml(objXMLHTTP.responseText);
xmlDOMParams.Save("D:\\Test.xml");

///////////////////////
Questionrerieving of logon hours of a user in active directory Pin
Mickky25-May-07 2:29
Mickky25-May-07 2:29 
Questioncontrolling wpf window with normal c# form? Pin
Mir_As25-May-07 2:01
Mir_As25-May-07 2:01 
AnswerRe: controlling wpf window with normal c# form? Pin
teejayem25-May-07 2:16
teejayem25-May-07 2:16 
QuestionWriting a plug In Pin
IrfanHaleem25-May-07 1:46
IrfanHaleem25-May-07 1:46 
AnswerRe: Writing a plug In Pin
JoeSharp25-May-07 2:01
JoeSharp25-May-07 2:01 
GeneralRe: Writing a plug In Pin
Tarakeshwar Reddy25-May-07 3:11
professionalTarakeshwar Reddy25-May-07 3:11 
QuestionBinding TreeView Control to an Arraylist Pin
KKrista25-May-07 1:45
KKrista25-May-07 1:45 
AnswerRe: Binding TreeView Control to an Arraylist Pin
Manoj Kumar Rai25-May-07 2:03
professionalManoj Kumar Rai25-May-07 2:03 
GeneralRe: Binding TreeView Control to an Arraylist Pin
KKrista25-May-07 2:18
KKrista25-May-07 2:18 
GeneralRe: Binding TreeView Control to an Arraylist Pin
zaboboa25-May-07 4:41
zaboboa25-May-07 4:41 
QuestionDisable the system keys (PageUp) in my TreeView Pin
anderslundsgard25-May-07 1:44
anderslundsgard25-May-07 1:44 
AnswerRe: Disable the system keys (PageUp) in my TreeView Pin
Muammar©25-May-07 7:58
Muammar©25-May-07 7:58 
GeneralRe: Disable the system keys (PageUp) in my TreeView Pin
Martin#25-May-07 8:32
Martin#25-May-07 8:32 
AnswerRe: Disable the system keys (PageUp) in my TreeView Pin
Martin#25-May-07 8:34
Martin#25-May-07 8:34 
QuestionAdding a new Cursor file Pin
Gareth H25-May-07 0:58
Gareth H25-May-07 0:58 
AnswerRe: Adding a new Cursor file Pin
JoeSharp25-May-07 1:57
JoeSharp25-May-07 1:57 
QuestionControl + Enter Pin
Rahul.RK24-May-07 23:49
Rahul.RK24-May-07 23:49 

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.