InterfaceQueuingAttribute Construtores

Definição

Inicializa uma nova instância da classe, habilitando o InterfaceQueuingAttribute suporte à fila.

Sobrecargas

Nome Description
InterfaceQueuingAttribute()

Inicializa uma nova instância da InterfaceQueuingAttribute classe definindo as propriedades e Enabled as Interface propriedades como seus valores padrão.

InterfaceQueuingAttribute(Boolean)

Inicializa uma nova instância da classe, opcionalmente desabilitando o InterfaceQueuingAttribute suporte à fila.

InterfaceQueuingAttribute()

Inicializa uma nova instância da InterfaceQueuingAttribute classe definindo as propriedades e Enabled as Interface propriedades como seus valores padrão.

public:
 InterfaceQueuingAttribute();
public InterfaceQueuingAttribute();
Public Sub New ()

Exemplos

O exemplo de código a seguir cria um novo InterfaceQueuingAttribute.

[InterfaceQueuing]
interface class IInterfaceQueuingAttribute_Ctor{};
[InterfaceQueuing]
public interface IInterfaceQueuingAttribute_Ctor
{
}
<InterfaceQueuing()>  _
Public Interface IInterfaceQueuingAttribute_Ctor
End Interface 'IInterfaceQueuingAttribute_Ctor

Comentários

A tabela a seguir mostra valores de propriedade iniciais para uma instância de InterfaceQueuingAttribute.

Property Value
Habilitado true
Interface null

Aplica-se a

InterfaceQueuingAttribute(Boolean)

Inicializa uma nova instância da classe, opcionalmente desabilitando o InterfaceQueuingAttribute suporte à fila.

public:
 InterfaceQueuingAttribute(bool enabled);
public InterfaceQueuingAttribute(bool enabled);
new System.EnterpriseServices.InterfaceQueuingAttribute : bool -> System.EnterpriseServices.InterfaceQueuingAttribute
Public Sub New (enabled As Boolean)

Parâmetros

enabled
Boolean

true para habilitar o suporte à fila; caso contrário, false.

Exemplos

O exemplo de código a seguir cria um novo InterfaceQueuingAttribute.

[InterfaceQueuing(true)]
interface class IInterfaceQueuingAttribute_Ctor_Bool{};
[InterfaceQueuing(true)]
public interface IInterfaceQueuingAttribute_Ctor_Bool
{
}
<InterfaceQueuing(True)>  _
Public Interface IInterfaceQueuingAttribute_Ctor_Bool
End Interface 'IInterfaceQueuingAttribute_Ctor_Bool

Aplica-se a