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

ObjectPoolingAttribute クラス

コンポーネントオブジェクト プーリング有効にして構成します。このクラス継承できません。

名前空間: System.EnterpriseServices
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文構文

<ComVisibleAttribute(False)> _
<AttributeUsageAttribute(AttributeTargets.Class, Inherited:=True)> _
Public NotInheritable Class
 ObjectPoolingAttribute
    Inherits Attribute
Dim instance As ObjectPoolingAttribute
[ComVisibleAttribute(false)] 
[AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)]
 
public sealed class ObjectPoolingAttribute
 : Attribute
[ComVisibleAttribute(false)] 
[AttributeUsageAttribute(AttributeTargets::Class, Inherited=true)]
 
public ref class ObjectPoolingAttribute sealed
 : public Attribute
/** @attribute ComVisibleAttribute(false) */ 
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)
 */ 
public final class ObjectPoolingAttribute extends
 Attribute
ComVisibleAttribute(false) 
AttributeUsageAttribute(AttributeTargets.Class, Inherited=true)
 
public final class ObjectPoolingAttribute extends
 Attribute
解説解説
使用例使用例

この属性使用方法コード例次に示します

Imports System
Imports System.EnterpriseServices
Imports System.Windows.Forms



<Assembly: ApplicationName("ObjectInspector")>
 
<Assembly: ApplicationActivation(ActivationOption.Server)> 
<Assembly: System.Reflection.AssemblyKeyFile("Inspector.snk")>
 
 
<JustInTimeActivation(), ObjectPooling(MinPoolSize := 2, MaxPoolSize := 100, CreationTimeout
 := 1000)>  _
Public Class ObjectInspector
    Inherits ServicedComponent
    
    
    Public Function IdentifyObject(ByVal
 obj As [Object]) As String
 
        ' Return this object to the pool after use.
        ContextUtil.DeactivateOnReturn = True
        
        ' Get the supplied object's type.        
        Dim objType As Type = obj.GetType()
        
        ' Return its name.
        Return objType.FullName
    
    End Function 'IdentifyObject

    Protected Overrides Sub
 Activate() 
        MessageBox.Show(String.Format("Now
 entering..." + vbLf + "Application: {0}"
 + vbLf + "Instance: {1}" + vbLf + "Context: {2}" + vbLf, ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString(),
 ContextUtil.ContextId.ToString()))
    
    End Sub 'Activate

    Protected Overrides Sub
 Deactivate() 
        MessageBox.Show("Bye Bye!")
    
    End Sub 'Deactivate

    ' This object can be pooled.
    Protected Overrides Function
 CanBePooled() As Boolean 
        Return True
    
    End Function 'CanBePooled

End Class 'ObjectInspector
using System;
using System.EnterpriseServices;
using System.Windows.Forms;

[assembly: ApplicationName("ObjectInspector")]
[assembly: ApplicationActivation(ActivationOption.Server)]
[assembly: System.Reflection.AssemblyKeyFile("Inspector.snk")]

[JustInTimeActivation]
[ObjectPooling(MinPoolSize=2, MaxPoolSize=100, CreationTimeout=1000)]
public class ObjectInspector : ServicedComponent
{

    public string IdentifyObject (Object obj)
    {
        // Return this object to the pool after use.
        ContextUtil.DeactivateOnReturn = true;

        // Get the supplied object's type.        
        Type objType = obj.GetType();
        
        // Return its name.
        return(objType.FullName);

    }

    protected override void Activate()
    {
        MessageBox.Show( String.Format("Now entering...\nApplication: {0}\nInstance:
 {1}\nContext: {2}\n",
                                       ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString()
,
                                       ContextUtil.ContextId.ToString() ) );
    }

    protected override void Deactivate()
    {
        MessageBox.Show("Bye Bye!");
    }

    // This object can be pooled.
    protected override bool CanBePooled()
    {
        return(true);
    }

}
#using <System.Windows.Forms.dll>
#using <System.Transactions.dll>
#using <System.EnterpriseServices.dll>

using namespace System;
using namespace System::EnterpriseServices;
using namespace System::Windows::Forms;


[assembly:ApplicationName("ObjectInspector")];
[assembly:ApplicationActivation(ActivationOption::Server)];
[assembly:System::Reflection::AssemblyKeyFile("Inspector.snk")];
[JustInTimeActivation]
[ObjectPooling(MinPoolSize=2,MaxPoolSize=100,CreationTimeout=1000)]
public ref class ObjectInspector: public
 ServicedComponent
{
public:
   String^ IdentifyObject( Object^ obj )
   {
      // Return this object to the pool after use.
      ContextUtil::DeactivateOnReturn = true;

      // Get the supplied object's type.        
      Type^ objType = obj->GetType();

      // Return its name.
      return (objType->FullName);
   }

protected:
   virtual void Activate() override
   {
      MessageBox::Show( String::Format( "Now entering...\nApplication: {0}\nInstance:
 {1}\nContext: {2}\n", ContextUtil::ApplicationId.ToString(), ContextUtil::ApplicationInstanceId.ToString(),
 ContextUtil::ContextId.ToString() ) );
   }

   virtual void Deactivate() override
   {
      MessageBox::Show( "Bye Bye!" );
   }

   // This object can be pooled.
   virtual bool CanBePooled() override
   {
      return (true);
   }
};
import System.*;
import System.EnterpriseServices.*;
import System.Windows.Forms.*;

/** @assembly ApplicationName("ObjectInspector")
 */
/** @assembly ApplicationActivation(ActivationOption.Server)
 */
/** @assembly System.Reflection.AssemblyKeyFile("Inspector.snk")
 */

/** @attribute JustInTimeActivation()
 */
/** @attribute ObjectPooling(MinPoolSize = 2, MaxPoolSize = 100, 
    CreationTimeout = 1000)
 */
public class ObjectInspector extends ServicedComponent
{
    public String IdentifyObject(Object obj)
    {
        // Return this object to the pool after use.
        ContextUtil.set_DeactivateOnReturn(true);
        // Get the supplied object's type.        
        Type objType = obj.GetType();
        // Return its name.
        return objType.get_FullName();
    } //IdentifyObject

    protected void Activate()
    {
        MessageBox.Show(String.Format("Now entering...\nApplication: {0}\n"
            + "Instance: {1}\nContext: {2}\n",
            ContextUtil.get_ApplicationId().ToString(),
            ContextUtil.get_ApplicationInstanceId().ToString(),
            ContextUtil.get_ContextId().ToString()));
    } //Activate

    protected void Deactivate()
    {
        MessageBox.Show("Bye Bye!");
    } //Deactivate

    // This object can be pooled.
    protected boolean CanBePooled()
    {
        return true;
    } //CanBePooled
} //ObjectInspector 
継承階層継承階層
System.Object
   System.Attribute
    System.EnterpriseServices.ObjectPoolingAttribute
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

ObjectPoolingAttribute コンストラクタ ()

ObjectPoolingAttribute クラス新しインスタンス初期化しEnabled、MaxPoolSize、MinPoolSize、CreationTimeout の各プロパティ既定値設定します

名前空間: System.EnterpriseServices
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文構文

Dim instance As New ObjectPoolingAttribute
public ObjectPoolingAttribute ()
public:
ObjectPoolingAttribute ()
public ObjectPoolingAttribute ()
public function ObjectPoolingAttribute ()
解説解説

ObjectPoolingAttributeインスタンス初期プロパティ値を次の表に示します

プロパティ

Enabled

true

MaxPoolSize

-1

MinPoolSize

-1

CreationTimeout

-1

使用例使用例

この属性使用方法コード例次に示します

Imports System
Imports System.EnterpriseServices
Imports System.Windows.Forms



<Assembly: ApplicationName("ObjectInspector")>
 
<Assembly: ApplicationActivation(ActivationOption.Server)> 
<Assembly: System.Reflection.AssemblyKeyFile("Inspector.snk")>
 
 
<JustInTimeActivation(), ObjectPooling(MinPoolSize := 2, MaxPoolSize := 100, CreationTimeout
 := 1000)>  _
Public Class ObjectInspector
    Inherits ServicedComponent
    
    
    Public Function IdentifyObject(ByVal
 obj As [Object]) As String
 
        ' Return this object to the pool after use.
        ContextUtil.DeactivateOnReturn = True
        
        ' Get the supplied object's type.        
        Dim objType As Type = obj.GetType()
        
        ' Return its name.
        Return objType.FullName
    
    End Function 'IdentifyObject

    Protected Overrides Sub
 Activate() 
        MessageBox.Show(String.Format("Now
 entering..." + vbLf + "Application: {0}"
 + vbLf + "Instance: {1}" + vbLf + "Context: {2}" + vbLf, ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString(),
 ContextUtil.ContextId.ToString()))
    
    End Sub 'Activate

    Protected Overrides Sub
 Deactivate() 
        MessageBox.Show("Bye Bye!")
    
    End Sub 'Deactivate

    ' This object can be pooled.
    Protected Overrides Function
 CanBePooled() As Boolean 
        Return True
    
    End Function 'CanBePooled

End Class 'ObjectInspector
using System;
using System.EnterpriseServices;
using System.Windows.Forms;

[assembly: ApplicationName("ObjectInspector")]
[assembly: ApplicationActivation(ActivationOption.Server)]
[assembly: System.Reflection.AssemblyKeyFile("Inspector.snk")]

[JustInTimeActivation]
[ObjectPooling(MinPoolSize=2, MaxPoolSize=100, CreationTimeout=1000)]
public class ObjectInspector : ServicedComponent
{

    public string IdentifyObject (Object obj)
    {
        // Return this object to the pool after use.
        ContextUtil.DeactivateOnReturn = true;

        // Get the supplied object's type.        
        Type objType = obj.GetType();
        
        // Return its name.
        return(objType.FullName);

    }

    protected override void Activate()
    {
        MessageBox.Show( String.Format("Now entering...\nApplication: {0}\nInstance:
 {1}\nContext: {2}\n",
                                       ContextUtil.ApplicationId.ToString(), ContextUtil.ApplicationInstanceId.ToString()
,
                                       ContextUtil.ContextId.ToString() ) );
    }

    protected override void Deactivate()
    {
        MessageBox.Show("Bye Bye!");
    }

    // This object can be pooled.
    protected override bool CanBePooled()
    {
        return(true);
    }

}
#using <System.Windows.Forms.dll>
#using <System.Transactions.dll>
#using <System.EnterpriseServices.dll>

using namespace System;
using namespace System::EnterpriseServices;
using namespace System::Windows::Forms;


[assembly:ApplicationName("ObjectInspector")];
[assembly:ApplicationActivation(ActivationOption::Server)];
[assembly:System::Reflection::AssemblyKeyFile("Inspector.snk")];
[JustInTimeActivation]
[ObjectPooling(MinPoolSize=2,MaxPoolSize=100,CreationTimeout=1000)]
public ref class ObjectInspector: public
 ServicedComponent
{
public:
   String^ IdentifyObject( Object^ obj )
   {
      // Return this object to the pool after use.
      ContextUtil::DeactivateOnReturn = true;

      // Get the supplied object's type.        
      Type^ objType = obj->GetType();

      // Return its name.
      return (objType->FullName);
   }

protected:
   virtual void Activate() override
   {
      MessageBox::Show( String::Format( "Now entering...\nApplication: {0}\nInstance:
 {1}\nContext: {2}\n", ContextUtil::ApplicationId.ToString(), ContextUtil::ApplicationInstanceId.ToString(),
 ContextUtil::ContextId.ToString() ) );
   }

   virtual void Deactivate() override
   {
      MessageBox::Show( "Bye Bye!" );
   }

   // This object can be pooled.
   virtual bool CanBePooled() override
   {
      return (true);
   }
};
import System.*;
import System.EnterpriseServices.*;
import System.Windows.Forms.*;

/** @assembly ApplicationName("ObjectInspector")
 */
/** @assembly ApplicationActivation(ActivationOption.Server)
 */
/** @assembly System.Reflection.AssemblyKeyFile("Inspector.snk")
 */

/** @attribute JustInTimeActivation()
 */
/** @attribute ObjectPooling(MinPoolSize = 2, MaxPoolSize = 100, 
    CreationTimeout = 1000)
 */
public class ObjectInspector extends ServicedComponent
{
    public String IdentifyObject(Object obj)
    {
        // Return this object to the pool after use.
        ContextUtil.set_DeactivateOnReturn(true);
        // Get the supplied object's type.        
        Type objType = obj.GetType();
        // Return its name.
        return objType.get_FullName();
    } //IdentifyObject

    protected void Activate()
    {
        MessageBox.Show(String.Format("Now entering...\nApplication: {0}\n"
            + "Instance: {1}\nContext: {2}\n",
            ContextUtil.get_ApplicationId().ToString(),
            ContextUtil.get_ApplicationInstanceId().ToString(),
            ContextUtil.get_ContextId().ToString()));
    } //Activate

    protected void Deactivate()
    {
        MessageBox.Show("Bye Bye!");
    } //Deactivate

    // This object can be pooled.
    protected boolean CanBePooled()
    {
        return true;
    } //CanBePooled
} //ObjectInspector 
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ObjectPoolingAttribute クラス
ObjectPoolingAttribute メンバ
System.EnterpriseServices 名前空間

ObjectPoolingAttribute コンストラクタ (Boolean)

ObjectPoolingAttribute クラス新しインスタンス初期化しEnabled プロパティ設定します

名前空間: System.EnterpriseServices
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文構文

Dim enable As Boolean

Dim instance As New ObjectPoolingAttribute(enable)
public ObjectPoolingAttribute (
    bool enable
)
public:
ObjectPoolingAttribute (
    bool enable
)
public ObjectPoolingAttribute (
    boolean enable
)
public function ObjectPoolingAttribute (
    enable : boolean
)

パラメータ

enable

オブジェクト プーリング有効にする場合trueそれ以外場合false

使用例使用例

新しObjectPoolingAttribute作成するコード例次に示します

<ObjectPooling(True)>  _
Public Class ObjectPoolingAttribute_Ctor_Bool
    Inherits ServicedComponent
End Class 'ObjectPoolingAttribute_Ctor_Bool
[ObjectPooling(true)]
public class ObjectPoolingAttribute_Ctor_Bool
 : ServicedComponent
{
}
[ObjectPooling(true)]
public ref class ObjectPoolingAttributeCtorBool
 : public ServicedComponent
{
};
/** @attribute ObjectPooling(true)
 */
public class ObjectPoolingAttribute_Ctor_Bool
 extends ServicedComponent
{
} //ObjectPoolingAttribute_Ctor_Bool
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ObjectPoolingAttribute クラス
ObjectPoolingAttribute メンバ
System.EnterpriseServices 名前空間

ObjectPoolingAttribute コンストラクタ (Int32, Int32)

ObjectPoolingAttribute クラス新しインスタンス初期化し、MaxPoolSize プロパティと MinPoolSize プロパティ設定します

名前空間: System.EnterpriseServices
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文構文

Public Sub New ( _
    minPoolSize As Integer, _
    maxPoolSize As Integer _
)
Dim minPoolSize As Integer
Dim maxPoolSize As Integer

Dim instance As New ObjectPoolingAttribute(minPoolSize,
 maxPoolSize)
public ObjectPoolingAttribute (
    int minPoolSize,
    int maxPoolSize
)
public:
ObjectPoolingAttribute (
    int minPoolSize, 
    int maxPoolSize
)
public ObjectPoolingAttribute (
    int minPoolSize, 
    int maxPoolSize
)
public function ObjectPoolingAttribute (
    minPoolSize : int, 
    maxPoolSize : int
)

パラメータ

minPoolSize

最小プール サイズ

maxPoolSize

最大プール サイズ

使用例使用例

新しObjectPoolingAttribute作成するコード例次に示します

<ObjectPooling(1, 10)>  _
Public Class ObjectPoolingAttribute_Ctor_Int_Int
    Inherits ServicedComponent
End Class 'ObjectPoolingAttribute_Ctor_Int_Int
[ObjectPooling(1, 10)]
public class ObjectPoolingAttribute_Ctor_Int_Int
 : ServicedComponent
{
}
[ObjectPooling(1, 10)]
public ref class ObjectPoolingAttributeCtorIntInt
 : public ServicedComponent
{
};
/** @attribute ObjectPooling(1, 10)
 */
public class ObjectPoolingAttribute_Ctor_Int_Int
 extends ServicedComponent
{
} //ObjectPoolingAttribute_Ctor_Int_Int
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ObjectPoolingAttribute クラス
ObjectPoolingAttribute メンバ
System.EnterpriseServices 名前空間

ObjectPoolingAttribute コンストラクタ

ObjectPoolingAttribute クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
ObjectPoolingAttribute () ObjectPoolingAttribute クラス新しインスタンス初期化しEnabled、MaxPoolSize、MinPoolSize、CreationTimeout の各プロパティ既定値設定します
ObjectPoolingAttribute (Boolean) ObjectPoolingAttribute クラス新しインスタンス初期化しEnabled プロパティ設定します
ObjectPoolingAttribute (Int32, Int32) ObjectPoolingAttribute クラス新しインスタンス初期化しMaxPoolSize プロパティMinPoolSize プロパティ設定します
ObjectPoolingAttribute (Boolean, Int32, Int32) ObjectPoolingAttribute クラス新しインスタンス初期化しEnabledMaxPoolSizeMinPoolSize の各プロパティ設定します
参照参照

関連項目

ObjectPoolingAttribute クラス
ObjectPoolingAttribute メンバ
System.EnterpriseServices 名前空間

ObjectPoolingAttribute コンストラクタ (Boolean, Int32, Int32)

ObjectPoolingAttribute クラス新しインスタンス初期化しEnabled、MaxPoolSize、MinPoolSize の各プロパティ設定します

名前空間: System.EnterpriseServices
アセンブリ: System.EnterpriseServices (system.enterpriseservices.dll 内)
構文構文

Public Sub New ( _
    enable As Boolean, _
    minPoolSize As Integer, _
    maxPoolSize As Integer _
)
Dim enable As Boolean
Dim minPoolSize As Integer
Dim maxPoolSize As Integer

Dim instance As New ObjectPoolingAttribute(enable,
 minPoolSize, maxPoolSize)
public ObjectPoolingAttribute (
    bool enable,
    int minPoolSize,
    int maxPoolSize
)
public:
ObjectPoolingAttribute (
    bool enable, 
    int minPoolSize, 
    int maxPoolSize
)
public ObjectPoolingAttribute (
    boolean enable, 
    int minPoolSize, 
    int maxPoolSize
)
public function ObjectPoolingAttribute (
    enable : boolean, 
    minPoolSize : int, 
    maxPoolSize : int
)

パラメータ

enable

オブジェクト プーリング有効にする場合trueそれ以外場合false

minPoolSize

最小プール サイズ

maxPoolSize

最大プール サイズ

使用例使用例

新しObjectPoolingAttribute作成するコード例次に示します

<ObjectPooling(True, 1, 10)>  _
Public Class ObjectPoolingAttribute_Ctor_Bool_Int_Int
    Inherits ServicedComponent
End Class 'ObjectPoolingAttribute_Ctor_Bool_Int_Int
[ObjectPooling(true, 1, 10)]
public class ObjectPoolingAttribute_Ctor_Bool_Int_Int
 : ServicedComponent
{
}
[ObjectPooling(true, 1, 10)]
public ref class ObjectPoolingAttributeCtorBoolIntInt
 : 
    public ServicedComponent
{
};
/** @attribute ObjectPooling(true, 1, 10)
 */
public class ObjectPoolingAttribute_Ctor_Bool_Int_Int
 extends ServicedComponent
{
} //ObjectPoolingAttribute_Ctor_Bool_Int_Int
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ObjectPoolingAttribute クラス
ObjectPoolingAttribute メンバ
System.EnterpriseServices 名前空間

ObjectPoolingAttribute プロパティ


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

  名前 説明
パブリック プロパティ CreationTimeout オブジェクトプール内で使用できるようになり、例外スローするまでの待機時間の長さ取得または設定します。この値の単位ミリ秒です。
パブリック プロパティ Enabled オブジェクト プーリングが有効かどうかを示す値を取得または設定します
パブリック プロパティ MaxPoolSize プール最大サイズの値を取得または設定します
パブリック プロパティ MinPoolSize プール最小サイズの値を取得または設定します
パブリック プロパティ TypeId  派生クラス実装されている場合は、この Attribute一意識別子取得します。 ( Attribute から継承されます。)
参照参照

関連項目

ObjectPoolingAttribute クラス
System.EnterpriseServices 名前空間

ObjectPoolingAttribute メソッド


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

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド AfterSaveChanges COM+ カタログ内のアセンブリインストールおよび構成中に.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Apply ObjectPoolingAttribute クラス属性サービス コンポーネント適用しているときに、.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Equals  オーバーロードされます。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 ( Attribute から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 ( Attribute から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsDefaultAttribute  派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラス既定値かどうか示します。 ( Attribute から継承されます。)
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 ( Attribute から継承されます。)
パブリック メソッド IsValidTarget COM+ カタログ内のアセンブリインストールおよび構成中に.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 ( Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ObjectPoolingAttribute クラス
System.EnterpriseServices 名前空間

ObjectPoolingAttribute メンバ

コンポーネントオブジェクト プーリング有効にして構成します。このクラス継承できません。

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


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド ObjectPoolingAttribute オーバーロードされます。 ObjectPoolingAttribute クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ CreationTimeout オブジェクトプール内で使用できるようになり、例外スローするまでの待機時間の長さ取得または設定します。この値の単位ミリ秒です。
パブリック プロパティ Enabled オブジェクト プーリングが有効かどうかを示す値を取得または設定します
パブリック プロパティ MaxPoolSize プール最大サイズの値を取得または設定します
パブリック プロパティ MinPoolSize プール最小サイズの値を取得または設定します
パブリック プロパティ TypeId  派生クラス実装されている場合は、この Attribute一意識別子取得します。(Attribute から継承されます。)
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド AfterSaveChanges COM+ カタログ内のアセンブリインストールおよび構成中に.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Apply ObjectPoolingAttribute クラス属性サービス コンポーネント適用しているときに、.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Equals  オーバーロードされます。 ( Attribute から継承されます。)
パブリック メソッド GetCustomAttribute  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用され指定した型のカスタム属性取得します。 (Attribute から継承されます。)
パブリック メソッド GetCustomAttributes  オーバーロードされますアセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されカスタム属性配列取得します。 (Attribute から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 (Attribute から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsDefaultAttribute  派生クラス内でオーバーライドされたときに、このインスタンスの値が派生クラス既定値かどうか示します。 (Attribute から継承されます。)
パブリック メソッド IsDefined  オーバーロードされます指定した型のカスタム属性が、アセンブリモジュール、型のメンバ、またはメソッド パラメータ適用されているかどうか判断します。 (Attribute から継承されます。)
パブリック メソッド IsValidTarget COM+ カタログ内のアセンブリインストールおよび構成中に.NET Framework インフラストラクチャによって内部的に呼び出されます。
パブリック メソッド Match  派生クラス内でオーバーライドされたときに、指定したオブジェクトとこのインスタンス等しかどうかを示す値を返します。 (Attribute から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ObjectPoolingAttribute クラス
System.EnterpriseServices 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からObjectPoolingAttributeを検索した結果を表示しています。
Weblioに収録されているすべての辞書からObjectPoolingAttributeを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からObjectPoolingAttribute を検索

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

辞書ショートカット

すべての辞書の索引

「ObjectPoolingAttribute」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS