Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 120439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:48:41+00:00 2026-05-11T03:48:41+00:00

i have a long running function¹: public string FindPasswordFromHash(String hash) { … } which

  • 0

i have a long running function¹:

public string FindPasswordFromHash(String hash) {     ... } 

which is called like:

private void Button1_Click(object sender, EventArgs e) {     PasswordTextBox.Text = FindPasswordFromHash(HashTextBox.Text); } 

Now i want to convert it into the asynchronous BeginInvoke/EndInvoke delegate pattern:

private void Button1_Click(object sender, EventArgs e) {    MyAsyncDelegate asyncDelegate = new MyAsyncDelegate(HashTextBox.Text);    asyncDelegte.BeginInvoke(hash, CompleteCallback, null); }  private void CompleteCallback(IAsyncResult ar) {    MyAsyncDelegate asyncDelegate = ((AsyncResult)ar).AsyncDelegate;    PasswordTextBox.Text = asyncDelegate.EndInvoke(asyncResult); }  delegate string MyAsyncDelegate(String hash); 

Of course this doesn’t work because of a leaky abstraction of the way asynchronous delegates are implemented:

‘Cross-thread operation not valid: Control ‘PasswordTextBox’ accessed from a thread other than the thread it was created on.’

Given that the asynchronous delegate pattern was invented to convert long running operations into asynchronous operations – what is the proper technique to use BeginInvoke/EndInvoke as replacement for the synchronous call?

And more specifically, what is the method to force the callback to marshalled back to the calling thread?


¹ Function name invented for example

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T03:48:42+00:00Added an answer on May 11, 2026 at 3:48 am

    You are handling the BeginInvoke() and EndInvoke() calls correctly. You just need to handle the fact that manipulating the GUI needs to be done on the GUI-thread.

    Luckily the framework provides the Control.Invoke() method, which allows you to have code executed on the GUI thread.

    I usually do something like this:

    private void SetPasswordText(string password){   if(InvokeRequired){     MethodInvoker mi = () => SetPasswordText(password);     Invoke(mi);     return;   }   PasswordTextBox.Text = password; } 

    For this particular case, you could also just do

    private void RecoveryCompleteCallback(IAsyncResult ar) {    MyAsyncDelegate asyncDelegate = ((AsyncResult)ar).AsyncDelegate;    string password = asyncDelegate.EndInvoke(asyncResult);    Invoke(()=>{PasswordTextBox.Text = password;}); } 

    If you using C# 2.0, you would do:

    MethodInvoker mi = delegate(){ SetPasswordText(password); }; Invoke(mi); 

    or

    Invoke(delegate(){PasswordTextBox.Text = password;}); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 71k
  • Answers 71k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Pro*C can generate valid C++ files, for code metrics tools… May 11, 2026 at 1:19 pm
  • added an answer You can use the same code generated by Visual Studio… May 11, 2026 at 1:19 pm
  • added an answer A Control has all the plumbing required to act as… May 11, 2026 at 1:19 pm

Related Questions

No related questions found

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.