diff --git a/docs/csharp/programming-guide/concepts/assemblies-gac/how-to-create-signed-friend-assemblies.md b/docs/csharp/programming-guide/concepts/assemblies-gac/how-to-create-signed-friend-assemblies.md
index 9fff88c8096..c433b72faad 100644
--- a/docs/csharp/programming-guide/concepts/assemblies-gac/how-to-create-signed-friend-assemblies.md
+++ b/docs/csharp/programming-guide/concepts/assemblies-gac/how-to-create-signed-friend-assemblies.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33340659"
---
# 方法: 署名されたフレンド アセンブリを作成する (C#)
この例では、厳密な名前を持つアセンブリと共にフレンド アセンブリを使用する方法を示します。 両方のアセンブリに厳密な名前が付けられている必要があります。 この例のアセンブリは両方とも同じキーを使用していますが、2 つのアセンブリそれぞれが別々のキーを使用することもできます。
diff --git a/docs/csharp/programming-guide/concepts/async/cancel-async-tasks-after-a-period-of-time.md b/docs/csharp/programming-guide/concepts/async/cancel-async-tasks-after-a-period-of-time.md
index b301329512f..8af46f4186b 100644
--- a/docs/csharp/programming-guide/concepts/async/cancel-async-tasks-after-a-period-of-time.md
+++ b/docs/csharp/programming-guide/concepts/async/cancel-async-tasks-after-a-period-of-time.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33325709"
---
# 指定した時間の経過後の非同期タスクのキャンセル (C#)
メソッドを使用すると、一定の時間が過ぎた後に非同期操作が完了するまで待たない場合に、その操作を取り消しできます。 このメソッドは、`CancelAfter` 式によって指定された時間内に完了しない、関連付けられたタスクの取り消しをスケジュールします。
diff --git a/docs/csharp/programming-guide/concepts/linq/chaining-queries-example.md b/docs/csharp/programming-guide/concepts/linq/chaining-queries-example.md
index 3fdd12353c2..dd57e1de2bd 100644
--- a/docs/csharp/programming-guide/concepts/linq/chaining-queries-example.md
+++ b/docs/csharp/programming-guide/concepts/linq/chaining-queries-example.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33327693"
---
# クエリの連結の例 (C#)
この例は前の例に基づいており、2 つのクエリ (どちらのクエリも遅延実行とレイジー評価を使用している) を連結した場合の結果について説明します。
diff --git a/docs/csharp/programming-guide/concepts/linq/how-to-combine-and-compare-string-collections-linq.md b/docs/csharp/programming-guide/concepts/linq/how-to-combine-and-compare-string-collections-linq.md
index 1ffecd78093..5b153ac45c1 100644
--- a/docs/csharp/programming-guide/concepts/linq/how-to-combine-and-compare-string-collections-linq.md
+++ b/docs/csharp/programming-guide/concepts/linq/how-to-combine-and-compare-string-collections-linq.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33328014"
---
# 方法: 文字列コレクションを結合および比較する (LINQ) (C#)
この例では、複数行のテキストが含まれるファイルをマージし、結果を並び替える方法を示します。 具体的には、複数のテキスト行からなる 2 つの集合の単純な連結、和集合、積集合を求める方法を示します。
diff --git a/docs/csharp/programming-guide/concepts/linq/how-to-query-for-the-largest-file-or-files-in-a-directory-tree-linq.md b/docs/csharp/programming-guide/concepts/linq/how-to-query-for-the-largest-file-or-files-in-a-directory-tree-linq.md
index ada96624809..2fabfadc281 100644
--- a/docs/csharp/programming-guide/concepts/linq/how-to-query-for-the-largest-file-or-files-in-a-directory-tree-linq.md
+++ b/docs/csharp/programming-guide/concepts/linq/how-to-query-for-the-largest-file-or-files-in-a-directory-tree-linq.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33325358"
---
# 方法: ディレクトリ ツリー内で最もサイズの大きいファイルを照会する (LINQ) (C#)
この例では、ファイル サイズ (バイト単位) に関連した 5 つのクエリを紹介しています。
diff --git a/docs/csharp/programming-guide/concepts/linq/how-to-retrieve-the-shallow-value-of-an-element.md b/docs/csharp/programming-guide/concepts/linq/how-to-retrieve-the-shallow-value-of-an-element.md
index 51f207e60a8..7a843e44bbb 100644
--- a/docs/csharp/programming-guide/concepts/linq/how-to-retrieve-the-shallow-value-of-an-element.md
+++ b/docs/csharp/programming-guide/concepts/linq/how-to-retrieve-the-shallow-value-of-an-element.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33325943"
---
# 方法: 要素の浅い値を取得する (C#)
このトピックでは、要素の浅い値を取得する方法について説明します。 浅い値は、特定の要素のみの値のことです。これに対し、深い値とは、すべての子孫要素の値が単一の文字列として連結された値をいいます。
diff --git a/docs/csharp/programming-guide/concepts/linq/preserving-white-space-while-loading-or-parsing-xml1.md b/docs/csharp/programming-guide/concepts/linq/preserving-white-space-while-loading-or-parsing-xml1.md
index 8050f76878a..d1fec4580b5 100644
--- a/docs/csharp/programming-guide/concepts/linq/preserving-white-space-while-loading-or-parsing-xml1.md
+++ b/docs/csharp/programming-guide/concepts/linq/preserving-white-space-while-loading-or-parsing-xml1.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33340152"
---
# XML の読み込み時または解析時の空白の維持
このトピックでは、空白に対する [!INCLUDE[sqltecxlinq](~/includes/sqltecxlinq-md.md)] の動作を制御する方法について説明します。
diff --git a/docs/csharp/programming-guide/concepts/linq/refactoring-into-pure-functions.md b/docs/csharp/programming-guide/concepts/linq/refactoring-into-pure-functions.md
index de7e3a87e64..a0d15486f15 100644
--- a/docs/csharp/programming-guide/concepts/linq/refactoring-into-pure-functions.md
+++ b/docs/csharp/programming-guide/concepts/linq/refactoring-into-pure-functions.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33339554"
---
# 純粋関数へのリファクタリング (C#)
diff --git a/docs/csharp/programming-guide/concepts/linq/refactoring-using-a-pure-function.md b/docs/csharp/programming-guide/concepts/linq/refactoring-using-a-pure-function.md
index 34598699536..0d1255fff32 100644
--- a/docs/csharp/programming-guide/concepts/linq/refactoring-using-a-pure-function.md
+++ b/docs/csharp/programming-guide/concepts/linq/refactoring-using-a-pure-function.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33340685"
---
# 純粋関数によるリファクタリング (C#)
次の例では、前の例 (「[拡張メソッドを使用したリファクタリング (C#)](../../../../csharp/programming-guide/concepts/linq/refactoring-using-an-extension-method.md)」) をリファクタリングして、純粋関数を使用するようにします。この例では、段落のテキストを検索するコードが純粋静的メソッド `ParagraphText` に移動されています。
diff --git a/docs/csharp/programming-guide/delegates/how-to-combine-delegates-multicast-delegates.md b/docs/csharp/programming-guide/delegates/how-to-combine-delegates-multicast-delegates.md
index afa214c24dc..5e2ad5b04dd 100644
--- a/docs/csharp/programming-guide/delegates/how-to-combine-delegates-multicast-delegates.md
+++ b/docs/csharp/programming-guide/delegates/how-to-combine-delegates-multicast-delegates.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33327396"
---
# 方法 : デリゲートを結合する (マルチキャスト デリゲート) (C# プログラミング ガイド)
ここでは、マルチキャスト デリゲートを作成する例について説明します。 [デリゲート](../../../csharp/language-reference/keywords/delegate.md) オブジェクトの便利な性質の 1 つは、`+` 演算子を使用して、複数のオブジェクトを 1 つのデリゲート インスタンスに割り当てられることです。 マルチキャスト デリゲートには、割り当てられたデリゲートの一覧が含まれています。 マルチキャスト デリゲートを呼び出すと、一覧内のデリゲートが順に呼び出されます。 結合できるのは、同じ型のデリゲートのみです。
diff --git a/docs/csharp/programming-guide/statements-expressions-operators/how-to-use-lambda-expressions-in-a-query.md b/docs/csharp/programming-guide/statements-expressions-operators/how-to-use-lambda-expressions-in-a-query.md
index e6ffe043772..24808e059d8 100644
--- a/docs/csharp/programming-guide/statements-expressions-operators/how-to-use-lambda-expressions-in-a-query.md
+++ b/docs/csharp/programming-guide/statements-expressions-operators/how-to-use-lambda-expressions-in-a-query.md
@@ -9,6 +9,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33328137"
---
# 方法: クエリでラムダ式を使用する (C# プログラミング ガイド)
クエリ構文でラムダ式を直接使うことはありませんが、メソッドの呼び出しで使い、クエリ式はメソッドの呼び出しを含むことができます。 実際、一部のクエリ操作はメソッド構文でのみ表現できます。 クエリ構文とメソッド構文の違いについて詳しくは、「[LINQ でのクエリ構文とメソッド構文](../../../csharp/programming-guide/concepts/linq/query-syntax-and-method-syntax-in-linq.md)」をご覧ください。
diff --git a/docs/csharp/programming-guide/xmldoc/delimiters-for-documentation-tags.md b/docs/csharp/programming-guide/xmldoc/delimiters-for-documentation-tags.md
index d3e9f6dbec5..2e69b95d5db 100644
--- a/docs/csharp/programming-guide/xmldoc/delimiters-for-documentation-tags.md
+++ b/docs/csharp/programming-guide/xmldoc/delimiters-for-documentation-tags.md
@@ -11,6 +11,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33325683"
---
# ドキュメント タグの区切り記号 (C# プログラミング ガイド)
XML ドキュメント コメントでは区切り記号を使用し、ドキュメント コメントの開始位置と終了位置をコンパイラに示す必要があります。 XML ドキュメント タグでは、次の種類の区切り記号を使用できます。
diff --git a/docs/csharp/roslyn-sdk/get-started/semantic-analysis.md b/docs/csharp/roslyn-sdk/get-started/semantic-analysis.md
index 08d4805baaa..157fbae1789 100644
--- a/docs/csharp/roslyn-sdk/get-started/semantic-analysis.md
+++ b/docs/csharp/roslyn-sdk/get-started/semantic-analysis.md
@@ -8,6 +8,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33358753"
---
# セマンティック解析の概要
diff --git a/docs/framework/configure-apps/file-schema/cryptography/cryptonamemapping-element.md b/docs/framework/configure-apps/file-schema/cryptography/cryptonamemapping-element.md
index b73cc855f7b..04b0dac99e6 100644
--- a/docs/framework/configure-apps/file-schema/cryptography/cryptonamemapping-element.md
+++ b/docs/framework/configure-apps/file-schema/cryptography/cryptonamemapping-element.md
@@ -16,6 +16,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33359388"
---
# <cryptoNameMapping>要素
表示名へのクラスのマッピングを含みます。
diff --git a/docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md b/docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md
index c14fff3a7b6..f7e6e639084 100644
--- a/docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md
+++ b/docs/framework/configure-apps/file-schema/wcf-directive/servicehost.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33352545"
---
# @ServiceHost
サービス ホストの生成に使用されるファクトリを、ホストされるサービスと、.svc ファイルで提供されるホスティング コードのアクセスとコンパイルに必要なその他のプログラミング部分に関連付けます。
diff --git a/docs/framework/data/adonet/queries-in-linq-to-dataset.md b/docs/framework/data/adonet/queries-in-linq-to-dataset.md
index d4b2e6cbc0c..cc7c0c7759b 100644
--- a/docs/framework/data/adonet/queries-in-linq-to-dataset.md
+++ b/docs/framework/data/adonet/queries-in-linq-to-dataset.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33362352"
---
# LINQ to DataSet でのクエリ
クエリは、データ ソースからデータを取得する式です。 一般に、クエリは専用のクエリ言語で表現されます。たとえば、リレーショナル データベースであれば SQL、XML であれば XQuery が使用されます。 そのため、開発者はクエリの対象となるデータ ソースやデータ形式ごとに新しいクエリ言語を習得する必要があります。 [!INCLUDE[vbteclinqext](../../../../includes/vbteclinqext-md.md)] は、データ ソースや形式の違いを意識せずにデータを扱うことのできる、より簡素化された一貫したモデルを提供します。 [!INCLUDE[vbteclinq](../../../../includes/vbteclinq-md.md)] クエリでは、常にプログラミング オブジェクトを操作することになります。
diff --git a/docs/framework/data/adonet/sql/linq/frequently-asked-questions.md b/docs/framework/data/adonet/sql/linq/frequently-asked-questions.md
index 9a601d5ba64..f13f4a1f18c 100644
--- a/docs/framework/data/adonet/sql/linq/frequently-asked-questions.md
+++ b/docs/framework/data/adonet/sql/linq/frequently-asked-questions.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33365489"
---
# よく寄せられる質問
ここでは、[!INCLUDE[vbteclinq](../../../../../../includes/vbteclinq-md.md)] を実装するときに発生する可能性のある一般的な問題の対処法について説明します。
diff --git a/docs/framework/data/adonet/sql/linq/how-to-make-entities-serializable.md b/docs/framework/data/adonet/sql/linq/how-to-make-entities-serializable.md
index c2524027b0b..6d381260ebc 100644
--- a/docs/framework/data/adonet/sql/linq/how-to-make-entities-serializable.md
+++ b/docs/framework/data/adonet/sql/linq/how-to-make-entities-serializable.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33354947"
---
# 方法 : エンティティをシリアル化可能にする
コードを作成するときに、エンティティをシリアル化可能にできます。 エンティティ クラスは 属性で装飾し、列は 属性で装飾します。
diff --git a/docs/framework/data/adonet/sql/linq/how-to-use-scalar-valued-user-defined-functions.md b/docs/framework/data/adonet/sql/linq/how-to-use-scalar-valued-user-defined-functions.md
index c34076b4809..2d4985235d2 100644
--- a/docs/framework/data/adonet/sql/linq/how-to-use-scalar-valued-user-defined-functions.md
+++ b/docs/framework/data/adonet/sql/linq/how-to-use-scalar-valued-user-defined-functions.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33355380"
---
# 方法 : スカラー値のユーザー定義関数を使用する
属性を使用することによって、クラスで定義されているクライアント メソッドを、ユーザー定義関数に対応付けることができます。 メソッドの本体は、メソッド呼び出しの目的を反映する式を構築し、変換および実行のためにその式を に渡します。
diff --git a/docs/framework/data/adonet/sql/linq/making-and-submitting-data-changes.md b/docs/framework/data/adonet/sql/linq/making-and-submitting-data-changes.md
index 54dc1caa6e5..549571f2145 100644
--- a/docs/framework/data/adonet/sql/linq/making-and-submitting-data-changes.md
+++ b/docs/framework/data/adonet/sql/linq/making-and-submitting-data-changes.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33360794"
---
# データの変更と変更の送信
このセクションのトピックでは、データベースを変更し、その変更を送信する方法と、オプティミスティック同時実行の競合を処理する方法について説明します。
diff --git a/docs/framework/data/adonet/sql/linq/optimistic-concurrency-overview.md b/docs/framework/data/adonet/sql/linq/optimistic-concurrency-overview.md
index e38ab3c8636..ad4aabc966f 100644
--- a/docs/framework/data/adonet/sql/linq/optimistic-concurrency-overview.md
+++ b/docs/framework/data/adonet/sql/linq/optimistic-concurrency-overview.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33362929"
---
# オプティミスティック同時実行の概要
[!INCLUDE[vbtecdlinq](../../../../../../includes/vbtecdlinq-md.md)] はオプティミスティック同時実行制御をサポートします。 次の表でオプティミスティック同時実行制御を適用する条件[!INCLUDE[vbtecdlinq](../../../../../../includes/vbtecdlinq-md.md)]ドキュメント。
diff --git a/docs/framework/data/adonet/sql/linq/programming-guide.md b/docs/framework/data/adonet/sql/linq/programming-guide.md
index 565a56dfd97..eb69e59d03e 100644
--- a/docs/framework/data/adonet/sql/linq/programming-guide.md
+++ b/docs/framework/data/adonet/sql/linq/programming-guide.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33361385"
---
# プログラミング ガイド
ここでは、[!INCLUDE[vbtecdlinq](../../../../../../includes/vbtecdlinq-md.md)] のオブジェクト モデルを作成および使用する方法について説明します。 Visual Studio を使用している場合は、使用することも、[!INCLUDE[vs_ordesigner_long](../../../../../../includes/vs-ordesigner-long-md.md)]同じタスクの多くを実行します。
diff --git a/docs/framework/data/adonet/sql/linq/sequence-operators.md b/docs/framework/data/adonet/sql/linq/sequence-operators.md
index 695f079e846..577e7e2b9a4 100644
--- a/docs/framework/data/adonet/sql/linq/sequence-operators.md
+++ b/docs/framework/data/adonet/sql/linq/sequence-operators.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33360288"
---
# シーケンス演算子
一般的には、[!INCLUDE[vbtecdlinq](../../../../../../includes/vbtecdlinq-md.md)] では、次のいずれかの性質を持つシーケンス演算子はサポートされません。
diff --git a/docs/framework/data/adonet/sql/sql-server-binary-and-large-value-data.md b/docs/framework/data/adonet/sql/sql-server-binary-and-large-value-data.md
index a8bd7ee49ea..e57f9b52911 100644
--- a/docs/framework/data/adonet/sql/sql-server-binary-and-large-value-data.md
+++ b/docs/framework/data/adonet/sql/sql-server-binary-and-large-value-data.md
@@ -7,6 +7,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33363407"
---
# SQL Server のバイナリ データと大きな値のデータ
SQL Server では `max` 指定子が提供されています。これにより、`varchar`、`nvarchar`、および `varbinary` データ型の記憶容量が拡張されています。 `varchar(max)`、 `nvarchar(max)`、および`varbinary(max)`総称して*大きな値データ型*です。 大きな値のデータ型を使用すると、最大で 2^31-1 バイトのデータを格納できます。
diff --git a/docs/framework/data/wcf/binding-data-to-controls-wcf-data-services.md b/docs/framework/data/wcf/binding-data-to-controls-wcf-data-services.md
index cc5fc4e1c08..de1d15c7d3b 100644
--- a/docs/framework/data/wcf/binding-data-to-controls-wcf-data-services.md
+++ b/docs/framework/data/wcf/binding-data-to-controls-wcf-data-services.md
@@ -14,6 +14,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33365567"
---
# コントロールへのデータのバインド (WCF Data Services)
[!INCLUDE[ssAstoria](../../../../includes/ssastoria-md.md)] では、`ComboBox` や `ListView` などのコントロールを クラスのインスタンスにバインドすることができます。 このコレクションは クラスから継承され、[!INCLUDE[ssODataFull](../../../../includes/ssodatafull-md.md)] フィードのデータが含まれます。 このクラスは、項目が追加または削除されたときに通知を行う動的なデータ コレクションを表します。 インスタンスを使用すると、データ バインディングの[!INCLUDE[ssAstoria](../../../../includes/ssastoria-md.md)]クライアント ライブラリによって追跡されるオブジェクトにこれらのイベントを処理する、常にバインドされている UI 要素内のデータを同期します。
diff --git a/docs/framework/data/wcf/hosting-the-data-service-wcf-data-services.md b/docs/framework/data/wcf/hosting-the-data-service-wcf-data-services.md
index ce33e0bf6e7..f9138efb5a7 100644
--- a/docs/framework/data/wcf/hosting-the-data-service-wcf-data-services.md
+++ b/docs/framework/data/wcf/hosting-the-data-service-wcf-data-services.md
@@ -13,6 +13,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33362851"
---
# データ サービスのホスティング (WCF Data Services)
使用して[!INCLUDE[ssAstoria](../../../../includes/ssastoria-md.md)]、としてデータを公開するサービスを作成することができます、[!INCLUDE[ssODataFull](../../../../includes/ssodatafull-md.md)]フィードします。 このデータ サービスは、 から継承されたクラスとして定義されます。 このクラスは、要求メッセージを処理、データ ソースに対する更新を実行に必要なの応答メッセージの生成に必要な機能を提供[!INCLUDE[ssODataShort](../../../../includes/ssodatashort-md.md)]です。 ただし、データ サービスにバインドできず着信 HTTP 要求のネットワーク ソケットでリッスンします。 この機能要件のため、データ サービスはホスティング コンポーネントに依存します。
diff --git a/docs/framework/data/wcf/how-to-manually-generate-client-data-service-classes-wcf-data-services.md b/docs/framework/data/wcf/how-to-manually-generate-client-data-service-classes-wcf-data-services.md
index aafa1e61002..d4555c646df 100644
--- a/docs/framework/data/wcf/how-to-manually-generate-client-data-service-classes-wcf-data-services.md
+++ b/docs/framework/data/wcf/how-to-manually-generate-client-data-service-classes-wcf-data-services.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33358995"
---
# 方法: クライアント データ サービス クラスを手動で生成する (WCF Data Services)
[!INCLUDE[ssAstoria](../../../../includes/ssastoria-md.md)] 使用すると、クライアント データ サービス クラスを自動的に生成するために Visual Studio との統合、**サービス参照の追加**ダイアログ ボックスを Visual Studio プロジェクトにデータ サービスへの参照を追加します。 詳細については、次を参照してください。[する方法: データ サービス参照の追加](../../../../docs/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services.md)です。 コード生成ツールの `DataSvcUtil.exe` を使用して、同じクライアント データ サービス クラスを手動で生成することもできます。 [!INCLUDE[ssAstoria](../../../../includes/ssastoria-md.md)] に含まれるこのツールは、データ サービス定義から .NET Framework クラスを生成します。 このツールを使用して、概念モデル (.csdl) ファイル、および Visual Studio プロジェクトの Entity Framework モデルを表す .edmx ファイルからデータ サービス クラスを生成することもできます。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugeditandcontinueerrorinfo-getstring-method.md b/docs/framework/unmanaged-api/debugging/icordebugeditandcontinueerrorinfo-getstring-method.md
index ef925dab7c7..d9559845482 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugeditandcontinueerrorinfo-getstring-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugeditandcontinueerrorinfo-getstring-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 74b0fc10b7d838265a6ccd9e2581f67a432f2c9e
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33417798"
---
# ICorDebugEditAndContinueErrorInfo::GetString メソッド
`GetString` は互換性のために残されています。 このメソッドを呼び出さないでください。
diff --git a/docs/framework/unmanaged-api/debugging/icordebuggenericvalue-interface.md b/docs/framework/unmanaged-api/debugging/icordebuggenericvalue-interface.md
index 25ba5ba5c96..221772f9e9c 100644
--- a/docs/framework/unmanaged-api/debugging/icordebuggenericvalue-interface.md
+++ b/docs/framework/unmanaged-api/debugging/icordebuggenericvalue-interface.md
@@ -18,9 +18,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 0081f020da673023e2c35f9599e9682215e2c9d4
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33415065"
---
# ICorDebugGenericValue Interface1
すべての値に適用される"ICorDebugValue"のサブクラスです。 このインターフェイスは、値に対して Get メソッドと Set メソッドを提供します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugguidtotypeenum-interface.md b/docs/framework/unmanaged-api/debugging/icordebugguidtotypeenum-interface.md
index 113f52a4920..c53aa0db6d7 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugguidtotypeenum-interface.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugguidtotypeenum-interface.md
@@ -18,9 +18,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 91d653587d5b7c35a2a43c7eed7c4bf33e5401f6
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33416752"
---
# ICorDebugGuidToTypeEnum インターフェイス
Guid のセットおよび ICorDebugType インスタンスによって表されますが、対応する型の間のマッピングを定義する列挙子を提供します。 このインターフェイスは、ICorDebugEnum インターフェイスからメソッドを継承します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebughandlevalue-dispose-method.md b/docs/framework/unmanaged-api/debugging/icordebughandlevalue-dispose-method.md
index 94500a4a502..d7c606166a4 100644
--- a/docs/framework/unmanaged-api/debugging/icordebughandlevalue-dispose-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebughandlevalue-dispose-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 9114799b87d39333ff9da66429dc1ea99ec2131c
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33413431"
---
# ICorDebugHandleValue::Dispose メソッド
インターフェイス ポインターを明示的に解放せずにこの ICorDebugHandleValue オブジェクトによって参照されるハンドルを解放します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugheapvalue3-getthreadowningmonitorlock-method.md b/docs/framework/unmanaged-api/debugging/icordebugheapvalue3-getthreadowningmonitorlock-method.md
index 8298e1f58ed..b583aec7630 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugheapvalue3-getthreadowningmonitorlock-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugheapvalue3-getthreadowningmonitorlock-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 7ba09991e9452a86c6b7a1cbb08a38a71ba2aeaa
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33416765"
---
# ICorDebugHeapValue3::GetThreadOwningMonitorLock メソッド
このオブジェクトのモニター ロックを所有するマネージ スレッドを返します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugmanagedcallback2-mdanotification-method.md b/docs/framework/unmanaged-api/debugging/icordebugmanagedcallback2-mdanotification-method.md
index 18211e07115..c8a7a3d5450 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugmanagedcallback2-mdanotification-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugmanagedcallback2-mdanotification-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 64b09c173e2f66d4c650083cc12f8a0ac2c92007
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33417229"
---
# ICorDebugManagedCallback2::MDANotification メソッド
コードが実行されるは、デバッグ中のアプリケーションでマネージ デバッグ アシスタント (MDA) が発生したことの通知を提供します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugnativeframe-getlocalmemoryregistervalue-method.md b/docs/framework/unmanaged-api/debugging/icordebugnativeframe-getlocalmemoryregistervalue-method.md
index 2fa05326f9e..9c20595455f 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugnativeframe-getlocalmemoryregistervalue-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugnativeframe-getlocalmemoryregistervalue-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 44f220f12f72ca8d0be6a9fc50b363c9bccb85fd
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33417590"
---
# ICorDebugNativeFrame::GetLocalMemoryRegisterValue メソッド
引数またはうち下位ワードおよび上位ワードそれぞれで格納される指定のレジスタとメモリの場所、このネイティブ フレームのローカル変数の値を取得します。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugobjectvalue-getcontext-method.md b/docs/framework/unmanaged-api/debugging/icordebugobjectvalue-getcontext-method.md
index cb11d7c346d..c8f5d7faaf5 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugobjectvalue-getcontext-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugobjectvalue-getcontext-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 61e8a8d1a923a52b678771f79122e5ab36a99706
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33415317"
---
# ICorDebugObjectValue::GetContext メソッド
`GetContext` このバージョンの .NET Framework では実装されていません。
diff --git a/docs/framework/unmanaged-api/debugging/icordebugthread2-getvolatileosthreadid-method.md b/docs/framework/unmanaged-api/debugging/icordebugthread2-getvolatileosthreadid-method.md
index 2933027607c..3ef3ba7afcd 100644
--- a/docs/framework/unmanaged-api/debugging/icordebugthread2-getvolatileosthreadid-method.md
+++ b/docs/framework/unmanaged-api/debugging/icordebugthread2-getvolatileosthreadid-method.md
@@ -19,9 +19,10 @@ author: rpetrusha
ms.author: ronpet
ms.openlocfilehash: 2e6798c2574167ec1a013429b380d8fa6c878dad
ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
-ms.translationtype: MT
+ms.translationtype: HT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33416564"
---
# ICorDebugThread2::GetVolatileOSThreadID メソッド
この ICorDebugThread2 のオペレーティング システムのスレッド識別子を取得します。
diff --git a/docs/framework/winforms/advanced/how-to-read-image-metadata.md b/docs/framework/winforms/advanced/how-to-read-image-metadata.md
index 2ce5bfbc142..96b8626d5f3 100644
--- a/docs/framework/winforms/advanced/how-to-read-image-metadata.md
+++ b/docs/framework/winforms/advanced/how-to-read-image-metadata.md
@@ -13,6 +13,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33526579"
---
# 方法 : イメージ メタデータを読み取る
一部のイメージ ファイルには、イメージの機能を決定するために読み取ることができますメタデータが含まれます。 たとえば、デジタル写真には、make とイメージをキャプチャするために使用する、カメラのモデルを決定するために読み取ることができますメタデータが含まれます可能性があります。 [!INCLUDE[ndptecgdiplus](../../../../includes/ndptecgdiplus-md.md)]既存のメタデータを読み取ることができます、およびイメージ ファイルに新しいメタデータを記述することもできます。
diff --git a/docs/framework/winforms/controls/accessing-unexposed-members-on-the-managed-html-document-object-model.md b/docs/framework/winforms/controls/accessing-unexposed-members-on-the-managed-html-document-object-model.md
index 6b903418213..cc00b672756 100644
--- a/docs/framework/winforms/controls/accessing-unexposed-members-on-the-managed-html-document-object-model.md
+++ b/docs/framework/winforms/controls/accessing-unexposed-members-on-the-managed-html-document-object-model.md
@@ -13,6 +13,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33526434"
---
# マネージ HTML DOM (Document Object Model) の非公開メンバーへのアクセス
マネージ HTML ドキュメント オブジェクト モデル (DOM) と呼ばれるクラスが含まれていますプロパティ、メソッド、およびすべての HTML 要素に共通するイベントを公開します。 場合によっては、ただし、する必要があります、マネージ インターフェイスを直接公開しないメンバーにアクセスします。 このトピックは、非公開メンバーにアクセスするための 2 つの方法を調べて[!INCLUDE[jsprjscript](../../../../includes/jsprjscript-md.md)]と Web ページ内で定義されている VBScript 関数。
diff --git a/docs/framework/winforms/controls/combobox-control-overview-windows-forms.md b/docs/framework/winforms/controls/combobox-control-overview-windows-forms.md
index f9f90bd2dbd..4e9f5eae36c 100644
--- a/docs/framework/winforms/controls/combobox-control-overview-windows-forms.md
+++ b/docs/framework/winforms/controls/combobox-control-overview-windows-forms.md
@@ -14,6 +14,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33527392"
---
# ComboBox コントロールの概要 (Windows フォーム)
Windows フォームドロップダウン コンボ ボックスにデータを表示するコントロールを使用します。 既定では、コントロールは、2 つの部分が表示されます。 最上部には、ユーザーがリスト項目を入力できるテキスト ボックス。 2 番目の部分は、元のユーザーが選択できる 1 つの項目の一覧を表示するリスト ボックスです。 コンボ ボックスの他のスタイルの詳細については、次を参照してください。 [Windows フォーム ComboBox Instead of リスト ボックスを使用するときに](../../../../docs/framework/winforms/controls/when-to-use-a-windows-forms-combobox-instead-of-a-listbox.md)です。
diff --git a/docs/framework/winforms/controls/data-display-modes-in-the-windows-forms-datagridview-control.md b/docs/framework/winforms/controls/data-display-modes-in-the-windows-forms-datagridview-control.md
index 61748cf8266..f719bc8e3c7 100644
--- a/docs/framework/winforms/controls/data-display-modes-in-the-windows-forms-datagridview-control.md
+++ b/docs/framework/winforms/controls/data-display-modes-in-the-windows-forms-datagridview-control.md
@@ -11,6 +11,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33528604"
---
# Windows フォーム DataGridView コントロールでのデータ表示モード
コントロールは、次の 3 つの異なるモードでデータを表示することができます: バインド、バインドされていない、および仮想です。 要件に基づいて最も適したモードを選択します。
diff --git a/docs/framework/winforms/controls/data-entry-in-the-windows-forms-datagridview-control.md b/docs/framework/winforms/controls/data-entry-in-the-windows-forms-datagridview-control.md
index b41d32d16cd..2710765cab5 100644
--- a/docs/framework/winforms/controls/data-entry-in-the-windows-forms-datagridview-control.md
+++ b/docs/framework/winforms/controls/data-entry-in-the-windows-forms-datagridview-control.md
@@ -11,6 +11,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33526821"
---
# Windows フォーム DataGridView コントロールでのデータ入力
`DataGridView`コントロールはユーザーが追加またはコントロール内のデータを変更する方法を変更することができますいくつかの機能を提供します。 たとえば、することができますデータ エントリ効率的と新しい行の既定値を提供することによってエラーが発生したとき、ユーザーに警告します。
diff --git a/docs/framework/winforms/controls/how-to-add-and-remove-nodes-with-the-windows-forms-treeview-control.md b/docs/framework/winforms/controls/how-to-add-and-remove-nodes-with-the-windows-forms-treeview-control.md
index 56fe4d3f966..1478d2f55dc 100644
--- a/docs/framework/winforms/controls/how-to-add-and-remove-nodes-with-the-windows-forms-treeview-control.md
+++ b/docs/framework/winforms/controls/how-to-add-and-remove-nodes-with-the-windows-forms-treeview-control.md
@@ -16,6 +16,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33525939"
---
# 方法 : Windows フォーム TreeView コントロールでノードを追加および削除する
Windows フォームコントロールは、最上位のノードを保存します。 そのコレクション。 各も独自をその子ノードを格納するコレクション。 型の両方のコレクション プロパティは、 、標準コレクション メンバーを追加、削除、およびノード階層の 1 つのレベルのノードを再配置を提供します。
diff --git a/docs/framework/wpf/controls/controls-by-category.md b/docs/framework/wpf/controls/controls-by-category.md
index 5730625efb7..704db1e7a37 100644
--- a/docs/framework/wpf/controls/controls-by-category.md
+++ b/docs/framework/wpf/controls/controls-by-category.md
@@ -9,6 +9,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33552000"
---
# カテゴリ別のコントロール
複数のカテゴリに、Windows Presentation Foundation (WPF) コントロールを論理的にグループ化できます。 これらのカテゴリを使用すると、類似の使用パターンや機能を持つコントロールを見つけやすくなり、シナリオに適したコントロールを選択できます。
diff --git a/docs/framework/wpf/controls/how-to-get-a-collection-of-lines-from-a-textbox.md b/docs/framework/wpf/controls/how-to-get-a-collection-of-lines-from-a-textbox.md
index 543ef74f2d6..7636b3665a3 100644
--- a/docs/framework/wpf/controls/how-to-get-a-collection-of-lines-from-a-textbox.md
+++ b/docs/framework/wpf/controls/how-to-get-a-collection-of-lines-from-a-textbox.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33552741"
---
# 方法 : TextBox から行のコレクションを取得する
この例からのテキスト行のコレクションを取得する方法を示しています、です。
diff --git a/docs/framework/wpf/controls/how-to-use-the-betweenshowdelay-property.md b/docs/framework/wpf/controls/how-to-use-the-betweenshowdelay-property.md
index b7da92e9bb4..9074e51305e 100644
--- a/docs/framework/wpf/controls/how-to-use-the-betweenshowdelay-property.md
+++ b/docs/framework/wpf/controls/how-to-use-the-betweenshowdelay-property.md
@@ -10,6 +10,7 @@ ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d
ms.translationtype: MT
ms.contentlocale: ja-JP
ms.lasthandoff: 05/04/2018
+ms.locfileid: "33552715"
---
# 方法 : BetweenShowDelay プロパティを使用する
使用するこの例に示します、ツールヒントが簡単に表示されるように時刻プロパティ — がほとんどまたはまったくない遅れて — ときに、ユーザー、マウスのポインター 1 つのツールヒントから直接別に移動します。