{"id":131898,"date":"2024-03-25T20:59:32","date_gmt":"2024-03-25T11:59:32","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/"},"modified":"2024-04-05T17:01:02","modified_gmt":"2024-04-05T08:01:02","slug":"c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/","title":{"rendered":"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5"},"content":{"rendered":"<p>ManualResetEvent \u306f\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u9806\u756a\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3059\u308b C# \u306e\u30b9\u30ec\u30c3\u30c9\u540c\u671f\u30af\u30e9\u30b9\u3067\u3059\u3002<\/p>\n<p>ManualResetEvent\u306f\u30bb\u30c3\u30c8\u72b6\u614b\u3068\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u306e2\u3064\u306e\u72b6\u614b\u3092\u6301\u3061\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u3001ManualResetEvent\u306f\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u3067\u3059\u3002\u30b9\u30ec\u30c3\u30c9\u306f\u3001ManualResetEvent\u306eSet()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u305d\u306e\u72b6\u614b\u3092\u30bb\u30c3\u30c8\u72b6\u614b\u306b\u3059\u308b\u3053\u3068\u3082\u3001Reset()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u306b\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>ManualResetEvent\u306b\u306f\u30012\u3064\u306e\u4e3b\u8981\u306a\u30e1\u30bd\u30c3\u30c9\u3068\u3057\u3066WaitOne()\u3068Set()\u304c\u3042\u308a\u307e\u3059\u3002WaitOne()\u30e1\u30bd\u30c3\u30c9\u306f\u3001ManualResetEvent\u306e\u72b6\u614b\u304c\u30bb\u30c3\u30c8\u72b6\u614b\u306b\u306a\u308b\u307e\u3067\u3001\u73fe\u5728\u30b9\u30ec\u30c3\u30c9\u3092\u30d6\u30ed\u30c3\u30af\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002Set()\u30e1\u30bd\u30c3\u30c9\u306fManualResetEvent\u306e\u72b6\u614b\u3092\u30bb\u30c3\u30c8\u72b6\u614b\u306b\u8a2d\u5b9a\u3057\u3001\u5f85\u6a5f\u4e2d\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u3092\u8a31\u53ef\u3059\u308b\u305f\u3081\u306b\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002<\/p>\n<p>\u4ee5\u4e0b\u306b\u3001ManualResetEvent \u306e\u4f8b\u3092\u793a\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">using<\/span> System;\r\n<span class=\"hljs-keyword\">using<\/span> System.Threading;\r\n<span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title\">Program<\/span>\r\n{\r\n<span class=\"hljs-keyword\">static<\/span> ManualResetEvent manualEvent = <span class=\"hljs-keyword\">new<\/span> ManualResetEvent(<span class=\"hljs-literal\">false<\/span>);\r\n<span class=\"hljs-function\"><span class=\"hljs-keyword\">static<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title\">Main<\/span>()<\/span>\r\n{\r\n<span class=\"hljs-comment\">\/\/ \u521b\u5efa\u4e24\u4e2a\u7ebf\u7a0b<\/span>\r\nThread t1 = <span class=\"hljs-keyword\">new<\/span> Thread(DoWork);\r\nt1.Start();\r\nThread t2 = <span class=\"hljs-keyword\">new<\/span> Thread(DoWork);\r\nt2.Start();\r\n<span class=\"hljs-comment\">\/\/ \u6267\u884c\u4e00\u4e9b\u5176\u4ed6\u64cd\u4f5c<\/span>\r\n<span class=\"hljs-comment\">\/\/ \u7b49\u5f85\u4e00\u6bb5\u65f6\u95f4\u540e\uff0c\u5c06 ManualResetEvent \u7684\u72b6\u6001\u8bbe\u7f6e\u4e3a\u8bbe\u7f6e\u72b6\u6001\uff0c\u4f7f\u5f97\u7b49\u5f85\u4e2d\u7684\u7ebf\u7a0b\u53ef\u4ee5\u7ee7\u7eed\u6267\u884c<\/span>\r\nThread.Sleep(<span class=\"hljs-number\">2000<\/span>);\r\nmanualEvent.Set();\r\n<span class=\"hljs-comment\">\/\/ \u7b49\u5f85\u4e24\u4e2a\u7ebf\u7a0b\u6267\u884c\u5b8c\u6bd5<\/span>\r\nt1.Join();\r\nt2.Join();\r\nConsole.WriteLine(<span class=\"hljs-string\">\"All threads have finished.\"<\/span>);\r\n}\r\n<span class=\"hljs-function\"><span class=\"hljs-keyword\">static<\/span> <span class=\"hljs-keyword\">void<\/span> <span class=\"hljs-title\">DoWork<\/span>()<\/span>\r\n{\r\nConsole.WriteLine(<span class=\"hljs-string\">\"Thread {0} is waiting.\"<\/span>, Thread.CurrentThread.ManagedThreadId);\r\n<span class=\"hljs-comment\">\/\/ \u963b\u585e\u5f53\u524d\u7ebf\u7a0b\uff0c\u76f4\u5230 ManualResetEvent \u7684\u72b6\u6001\u4e3a\u8bbe\u7f6e\u72b6\u6001<\/span>\r\nmanualEvent.WaitOne();\r\nConsole.WriteLine(<span class=\"hljs-string\">\"Thread {0} continues.\"<\/span>, Thread.CurrentThread.ManagedThreadId);\r\n}\r\n}\r\n<\/code><\/pre>\n<p>\u4e0a\u8a18\u306e\u4f8b\u3067\u306f\u3001DoWork()\u30e1\u30bd\u30c3\u30c9\u3092\u5b9f\u884c\u3059\u308b2\u3064\u306e\u30b9\u30ec\u30c3\u30c9\u3001t1\u3068t2\u3092\u4f5c\u6210\u3057\u307e\u3057\u305f\u3002DoWork()\u30e1\u30bd\u30c3\u30c9\u3067\u306f\u3001\u307e\u305a\u73fe\u5728\u306e\u30b9\u30ec\u30c3\u30c9\u306eID\u3092\u51fa\u529b\u3057\u3001manualEvent\u306eWaitOne()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u30b9\u30ec\u30c3\u30c9\u3092\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u3002\u305d\u306e\u5f8c\u3001\u30e1\u30a4\u30f3\u30b9\u30ec\u30c3\u30c9\u3067\u4e00\u5b9a\u6642\u9593\u5f85\u6a5f\u3057\u3066\u304b\u3089\u3001manualEvent\u306eSet()\u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u72b6\u614b\u3092\u30bb\u30c3\u30c8\u72b6\u614b\u306b\u8a2d\u5b9a\u3057\u3001\u5f85\u6a5f\u4e2d\u306e\u30b9\u30ec\u30c3\u30c9\u304c\u5b9f\u884c\u3092\u518d\u958b\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3057\u305f\u3002\u6700\u5f8c\u306b\u3001t1.Join()\u30e1\u30bd\u30c3\u30c9\u3068t2.Join()\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3057\u30662\u3064\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u304c\u5b8c\u4e86\u3059\u308b\u306e\u3092\u5f85\u3061\u307e\u3057\u305f\u3002<\/p>\n<p>\u3053\u306e\u4f8b\u3067\u5206\u304b\u308b\u3088\u3046\u306b\u3001`ManualResetEvent` \u306f\u3001\u7279\u5b9a\u306e\u6761\u4ef6\u304c\u6e80\u305f\u3055\u308c\u308b\u306e\u3092\u5f85\u3064\u5fc5\u8981\u304c\u3042\u308b\u5834\u5408\u306b `WaitOne()` \u30e1\u30bd\u30c3\u30c9\u3092\u547c\u3073\u51fa\u3057\u3066\u30b9\u30ec\u30c3\u30c9\u3092\u30d6\u30ed\u30c3\u30af\u3057\u3001\u5f85\u6a5f\u4e2d\u306e\u30b9\u30ec\u30c3\u30c9\u3092 `Set()` \u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u306b\u3088\u3063\u3066\u30a6\u30a7\u30a4\u30af\u30a2\u30c3\u30d7\u3055\u305b\u308b\u3053\u3068\u3067\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u9806\u5e8f\u3092\u5236\u5fa1\u3067\u304d\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ManualResetEvent \u306f\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u9806\u756a\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3059\u308b C# \u306e\u30b9\u30ec\u30c3\u30c9\u540c\u671f\u30af\u30e9\u30b9\u3067\u3059\u3002 ManualResetEvent\u306f\u30bb\u30c3\u30c8\u72b6\u614b\u3068\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u306e2\u3064\u306e\u72b6\u614b\u3092\u6301\u3061\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u3001M [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-131898","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5 - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/c-\u306e-manualresetevent-\u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\" \/>\n<meta property=\"og:description\" content=\"ManualResetEvent \u306f\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u9806\u756a\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3059\u308b C# \u306e\u30b9\u30ec\u30c3\u30c9\u540c\u671f\u30af\u30e9\u30b9\u3067\u3059\u3002 ManualResetEvent\u306f\u30bb\u30c3\u30c8\u72b6\u614b\u3068\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u306e2\u3064\u306e\u72b6\u614b\u3092\u6301\u3061\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u3001M [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/c-\u306e-manualresetevent-\u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-25T11:59:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-05T08:01:02+00:00\" \/>\n<meta name=\"author\" content=\"\u5149, \u660e\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u5149, \u660e\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/\",\"name\":\"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5 - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-25T11:59:32+00:00\",\"dateModified\":\"2024-04-05T08:01:02+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/9ee62cea876d247deba14a0ac7ba5b55\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/9ee62cea876d247deba14a0ac7ba5b55\",\"name\":\"\u5149, \u660e\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3dffb6c754b95e3fbdcd8973f4375ff9dd10d41e4f6632ad08d4d59ccc35af8d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3dffb6c754b95e3fbdcd8973f4375ff9dd10d41e4f6632ad08d4d59ccc35af8d?s=96&d=mm&r=g\",\"caption\":\"\u5149, \u660e\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/hikariakira\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5 - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/c-\u306e-manualresetevent-\u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\/","og_locale":"ja_JP","og_type":"article","og_title":"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5","og_description":"ManualResetEvent \u306f\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u306e\u5b9f\u884c\u9806\u756a\u3092\u5236\u5fa1\u3059\u308b\u305f\u3081\u306b\u5229\u7528\u3059\u308b C# \u306e\u30b9\u30ec\u30c3\u30c9\u540c\u671f\u30af\u30e9\u30b9\u3067\u3059\u3002 ManualResetEvent\u306f\u30bb\u30c3\u30c8\u72b6\u614b\u3068\u975e\u30bb\u30c3\u30c8\u72b6\u614b\u306e2\u3064\u306e\u72b6\u614b\u3092\u6301\u3061\u307e\u3059\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u3001M [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/c-\u306e-manualresetevent-\u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-25T11:59:32+00:00","article_modified_time":"2024-04-05T08:01:02+00:00","author":"\u5149, \u660e","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u5149, \u660e"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/","name":"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5 - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-25T11:59:32+00:00","dateModified":"2024-04-05T08:01:02+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/9ee62cea876d247deba14a0ac7ba5b55"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"C# \u306e ManualResetEvent \u306e\u4ed5\u7d44\u307f\u3068\u4f7f\u7528\u65b9\u6cd5"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/9ee62cea876d247deba14a0ac7ba5b55","name":"\u5149, \u660e","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3dffb6c754b95e3fbdcd8973f4375ff9dd10d41e4f6632ad08d4d59ccc35af8d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3dffb6c754b95e3fbdcd8973f4375ff9dd10d41e4f6632ad08d4d59ccc35af8d?s=96&d=mm&r=g","caption":"\u5149, \u660e"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/hikariakira\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c-%e3%81%ae-manualresetevent-%e3%81%ae%e4%bb%95%e7%b5%84%e3%81%bf%e3%81%a8%e4%bd%bf%e7%94%a8%e6%96%b9%e6%b3%95\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131898","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=131898"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131898\/revisions"}],"predecessor-version":[{"id":322290,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/131898\/revisions\/322290"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=131898"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=131898"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=131898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}