Compartilhar via


Classe NotOutputBufferException

The exception that is thrown when a method that is restricted to Output objects is called on an InputPipelineBuffer.

Hierarquia de herança

System. . :: . .Object
  System. . :: . .Exception
    System. . :: . .ApplicationException
      Microsoft.SqlServer.Dts.Pipeline..::..NotOutputBufferException

Namespace:  Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.PipelineHost (em Microsoft.SqlServer.PipelineHost.dll)

Sintaxe

'Declaração
<SerializableAttribute> _
Public Class NotOutputBufferException _
    Inherits ApplicationException
'Uso
Dim instance As NotOutputBufferException
[SerializableAttribute]
public class NotOutputBufferException : ApplicationException
[SerializableAttribute]
public ref class NotOutputBufferException : public ApplicationException
[<SerializableAttribute>]
type NotOutputBufferException =  
    class
        inherit ApplicationException
    end
public class NotOutputBufferException extends ApplicationException

O tipo NotOutputBufferException expõe os membros a seguir.

Construtores

  Nome Descrição
Método público NotOutputBufferException Initializes a new instance of the NotOutputBufferException class.

Início

Propriedades

  Nome Descrição
Propriedade pública Data (Herdado de Exception.)
Propriedade pública HelpLink (Herdado de Exception.)
Propriedade protegida HResult (Herdado de Exception.)
Propriedade pública InnerException (Herdado de Exception.)
Propriedade pública Message (Herdado de Exception.)
Propriedade pública Source (Herdado de Exception.)
Propriedade pública StackTrace (Herdado de Exception.)
Propriedade pública TargetSite (Herdado de Exception.)

Início

Métodos

  Nome Descrição
Método público Equals (Herdado de Object.)
Método protegido Finalize (Herdado de Object.)
Método público GetBaseException (Herdado de Exception.)
Método público GetHashCode (Herdado de Object.)
Método público GetObjectData (Herdado de Exception.)
Método público GetType (Herdado de Exception.)
Método protegido MemberwiseClone (Herdado de Object.)
Método público ToString (Herdado de Exception.)

Início

Comentários

The following methods are restricted to PipelineBuffer objects in Output mode:

Exemplos

The following code example generates a NotOutputBufferException.

using System;
using Microsoft.SqlServer.Dts.Pipeline;
using Microsoft.SqlServer.Dts.Pipeline.Design;

namespace DtsDocumentation
{
[DtsPipelineComponent(DisplayName = "MyComponent")]
public class Class1 : PipelineComponent
{
public override void ProcessInput(int inputID, PipelineBuffer buffer)
{
//Causes an NotOutputBufferException
buffer.AddRow();
}
}
}

Segurança de thread

Qualquer membro público static (Shared no Visual Basic) desse tipo é seguro para threads. Não há garantia de que qualquer membro de instância seja seguro para threads.

Consulte também

Referência