I have a problem sending postData while user click on button on some webpage. It means that postData cannot be Null. Here is the code:

webBrowser1.Navigate(e.Url, "_self", default(byte[]), headers);

As you can see I've used default(byte[]) for postData overload, but this is not working. What I'm trying to do is NOT to change post data, just headers.

Edit: I do this like this:

private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
        {
                .
                .
                .    
                webBrowser1.Navigate(e.Url, "_self", default(byte[], headers);

                .
                .
                . 
        }

When the browser is navigating I add headers. This works, but when user press on some button or writes username and password into login forum and press submit, it doesn't work.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Just pass empty byte array. default of array is null, because arrays are reference type.

link|improve this answer
I've tried but don't work :( ... please see edited question. – Doctorslo May 21 '11 at 20:16
You are still using default. Did you read my advice carefully? – Tomas Voracek May 21 '11 at 20:30
OK, sorry, but how do you mean empty byte array? I've tried it like this, but it's not working: byte[] postdata = new byte[900]; and then webBrowser1.Navigate(e.Url, "_self", postdata, headers); – Doctorslo May 21 '11 at 20:47
I think Tomas means a byte array of zero length, as in new byte[0] – Joel Mueller May 21 '11 at 20:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.