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

  • SEARCH
  • Home
  • 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 136573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:58:11+00:00 2026-05-11T06:58:11+00:00

I have a windows service that starts a thread in the OnStart method. Basically

  • 0

I have a windows service that starts a thread in the OnStart method.

Basically I want to be able to stop the service if something goes really wrong (like an unhandled exception).

Currently I’m using ServiceBase.Stop() but that involves having a ServiceBase instance somewhere visible to the thread, which in turn involves having my instance be declared as public static in the main program.

Is there any ‘better way’ to stop the service? If it isn’t … is it safe to do it that way?

  • 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-11T06:58:12+00:00Added an answer on May 11, 2026 at 6:58 am

    The easiest and, in my opinion, cleanest way is to use a public static property of the service class. The only time this won’t work is if you are using the same service class to run multiple services in the same process, something that is very rare.

    private static MyService m_ServiceInstance;  public static MyService ServiceInstance {     get { return m_ServiceInstance; } }  public MyService() {     InitializeComponents();     //Other initialization     m_ServiceInstance = this; } 

    Injecting the service instance into every method that could possibly need it is an alternative but it can quickly get messy and it has no real advantages over just using a static property.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .NET Windows Service which spawns a thread that basically just acts
I have a C# Windows Service. The OnStart() method contains 3 lines that all
I have written a Windows service that allows me to remotely run and stop
I have written a pretty simple Windows service in C# that starts up automatically
Say I have a windows service that runs a method to generate reports. For
I have a windows service that spawns off around 60 threads when it starts.
I have a windows service that has a timer that fires a method every
I have implemented a windows xp service application that starts a couple of working
I have a windows service that is heavily multithreaded. Each thread calls various methods
I have a windows service that runs various system monitoring operations. However, when running

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.