NotOutputBufferException クラス

定義

例外は、 Output オブジェクトに制限されたメソッドが InputPipelineBuffer上で呼び出されたときにスローされます。

public ref class NotOutputBufferException : ApplicationException
[System.Serializable]
public class NotOutputBufferException : ApplicationException
[<System.Serializable>]
type NotOutputBufferException = class
    inherit ApplicationException
Public Class NotOutputBufferException
Inherits ApplicationException
継承
NotOutputBufferException
属性

以下のコード例は 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();  
}  
}  
}  

注釈

以下の方法はOutputモードのオブジェクトPipelineBufferに限定されています:

コンストラクター

名前 説明
NotOutputBufferException()

NotOutputBufferException クラスの新しいインスタンスを初期化します。

適用対象