CallContextとは? わかりやすく解説

CallContext クラス

実行コード パスと共に渡されるプロパティセット提供します。このクラス継承できません。

名前空間: System.Runtime.Remoting.Messaging
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class
 CallContext
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public sealed class CallContext
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class CallContext sealed
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public final class CallContext
SerializableAttribute 
ComVisibleAttribute(true) 
public final class CallContext
解説解説

CallContext は、メソッド呼び出しスレッド ローカル ストレージ似た専用コレクション オブジェクトで、実行各論スレッドに対して一意データ スロット提供します。そのスロットは、他の論理スレッド呼び出しコンテキスト間で共有されません。実行コード パス走査およびバックアップ時にオブジェクトCallContext追加されパス沿ってさまざまなオブジェクトチェックされることがあります

別の AppDomain 内のオブジェクトに対してリモート メソッド呼び出し実行され場合CallContext クラスは、そのリモート呼び出しと共に転送される LogicalCallContext インスタンス生成します。ILogicalThreadAffinative インターフェイス公開しCallContext 内に格納されているオブジェクトだけが LogicalCallContext格納されAppDomain外部転送されます。このインターフェイスサポートしていないオブジェクトは、リモートメソッド呼び出し生成される LogicalCallContext インスタンスでは転送されません。

メモメモ

CallContextすべてのメソッド静的で、現在の Thread呼び出しコンテキスト動作します

使用例使用例

CallContext クラス使用して識別のためにリモートの場所に プリンシパル オブジェクトID オブジェクト送信する例を次のコード示しますサンプル使用する LogicalCallContextData クラスコード表示するには、ILogicalThreadAffinative インターフェイストピックの例を参照してくださいサンプル使用する HelloServiceClass クラスコード表示するには、GetData メソッドトピックの例を参照してください。この例で使用されているサーバー クラスコード確認するには、RegisterActivatedServiceType クラスの例を参照してください

Imports System
Imports System.Runtime.Remoting
Imports System.Runtime.Remoting.Channels
Imports System.Runtime.Remoting.Channels.Tcp
Imports System.Runtime.Remoting.Messaging
Imports System.Security.Principal
Imports System.Security.Permissions


Public Class ClientClass
   <PermissionSet(SecurityAction.LinkDemand)> _
   Public Shared Sub Main()
      
      Dim ident As New GenericIdentity("Bob")
      Dim prpal As New GenericPrincipal(ident,
 New String() {"Level1"})
      Dim data As New LogicalCallContextData(prpal)
      
      'Enter data into the CallContext
      CallContext.SetData("test data", data)
      
      
      Console.WriteLine(data.numOfAccesses)
      
      ChannelServices.RegisterChannel(New TcpChannel())
      
      RemotingConfiguration.RegisterActivatedClientType(GetType(HelloServiceClass),
 "tcp://localhost:8082")
      
      Dim service As New
 HelloServiceClass()
      
      If service Is Nothing
 Then
         Console.WriteLine("Could not locate server.")
         Return
      End If
      
      
      ' call remote method
      Console.WriteLine()
      Console.WriteLine("Calling remote object")
      Console.WriteLine(service.HelloMethod("Caveman"))
      Console.WriteLine(service.HelloMethod("Spaceman"))
      Console.WriteLine(service.HelloMethod("Bob"))
      Console.WriteLine("Finished remote object call")
      Console.WriteLine()
      
      'Extract the returned data from the call context
      Dim returnedData As LogicalCallContextData
 = CType(CallContext.GetData("test data"), LogicalCallContextData)
      
      Console.WriteLine(data.numOfAccesses)
      Console.WriteLine(returnedData.numOfAccesses)

   End Sub 'Main

End Class 'ClientClass
using System;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Tcp;
using System.Runtime.Remoting.Messaging;
using System.Security.Principal;
using System.Security.Permissions;

public class ClientClass {
   [PermissionSet(SecurityAction.LinkDemand)]
   public static void Main()
 {
      
      GenericIdentity ident = new GenericIdentity("Bob");
      GenericPrincipal prpal = new GenericPrincipal(ident, 
                                                    new string[]
 {"Level1"});
      LogicalCallContextData data = new LogicalCallContextData(prpal);
      
      
      //Enter data into the CallContext
      CallContext.SetData("test data", data);

      
      Console.WriteLine(data.numOfAccesses);

      ChannelServices.RegisterChannel(new TcpChannel());

      RemotingConfiguration.RegisterActivatedClientType(typeof(HelloServiceClass)
,
                                                        "tcp://localhost:8082");

      HelloServiceClass service = new HelloServiceClass();

      if(service == null) {
          Console.WriteLine("Could not locate server.");
          return;
      }


      // call remote method
      Console.WriteLine();
      Console.WriteLine("Calling remote object");
      Console.WriteLine(service.HelloMethod("Caveman"));
      Console.WriteLine(service.HelloMethod("Spaceman"));
      Console.WriteLine(service.HelloMethod("Bob"));
      Console.WriteLine("Finished remote object call");
      Console.WriteLine();

      //Extract the returned data from the call context
      LogicalCallContextData returnedData = 
         (LogicalCallContextData)CallContext.GetData("test data");

      Console.WriteLine(data.numOfAccesses);
      Console.WriteLine(returnedData.numOfAccesses);
   }
}
#using <system.dll>
#using <system.runtime.remoting.dll>
#using <service.dll>

using namespace System;
using namespace System::Runtime::Remoting;
using namespace System::Runtime::Remoting::Channels;
using namespace System::Runtime::Remoting::Channels::Tcp;
using namespace System::Runtime::Remoting::Messaging;
using namespace System::Security::Principal;
int main()
{
   GenericIdentity^ ident = gcnew GenericIdentity( "Bob" );
   array<String^>^id = gcnew array<String^>(1);
   id[ 0 ] = "Level1";
   GenericPrincipal^ prpal = gcnew GenericPrincipal( ident,id );
   LogicalCallContextData ^ data = gcnew LogicalCallContextData( prpal );

   //Enter data into the CallContext
   CallContext::SetData( "test data", data );
   Console::WriteLine( data->numOfAccesses );
   ChannelServices::RegisterChannel( gcnew TcpChannel );
   RemotingConfiguration::RegisterActivatedClientType( HelloServiceClass::typeid,
 "tcp://localhost:8082" );
   HelloServiceClass ^ service = gcnew HelloServiceClass;
   if ( service == nullptr )
   {
      Console::WriteLine( "Could not locate server." );
      return 0;
   }

   // call remote method
   Console::WriteLine();
   Console::WriteLine( "Calling remote Object*" );
   Console::WriteLine( service->HelloMethod( "Caveman" ) );
   Console::WriteLine( service->HelloMethod( "Spaceman" ) );
   Console::WriteLine( service->HelloMethod( "Bob" ) );
   Console::WriteLine( "Finished remote Object* call" );
   Console::WriteLine();

   //Extract the returned data from the call context
   LogicalCallContextData ^ returnedData = static_cast<LogicalCallContextData
 ^>(CallContext::GetData( "test data" ));
   Console::WriteLine( data->numOfAccesses );
   Console::WriteLine( returnedData->numOfAccesses );
   return 0;
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
  System.Runtime.Remoting.Messaging.CallContext
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CallContext メンバ
System.Runtime.Remoting.Messaging 名前空間
Header

CallContext プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ HostContext 現在のスレッド関連付けられているホスト コンテキスト取得または設定します
参照参照

関連項目

CallContext クラス
System.Runtime.Remoting.Messaging 名前空間
Header

CallContext メソッド


パブリック メソッドパブリック メソッド

参照参照

関連項目

CallContext クラス
System.Runtime.Remoting.Messaging 名前空間
Header

CallContext メンバ

実行コード パスと共に渡されるプロパティセット提供します。このクラス継承できません。

CallContext データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ HostContext 現在のスレッド関連付けられているホスト コンテキスト取得または設定します
パブリック メソッドパブリック メソッド
参照参照

関連項目

CallContext クラス
System.Runtime.Remoting.Messaging 名前空間
Header



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「CallContext」の関連用語

CallContextのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



CallContextのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS