Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
The exception that is thrown when a method that is restricted to Output objects is called on an Input PipelineBuffer.
Vererbungshierarchie
System.Object
System.Exception
System.ApplicationException
Microsoft.SqlServer.Dts.Pipeline.NotOutputBufferException
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Class NotOutputBufferException _
Inherits ApplicationException
'Usage
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
Der NotOutputBufferException-Typ macht folgende Elemente verfügbar.
Konstruktoren
| Name | Beschreibung | |
|---|---|---|
![]() |
NotOutputBufferException | Initializes a new instance of the NotOutputBufferException class. |
Zum Anfang
Eigenschaften
| Name | Beschreibung | |
|---|---|---|
![]() |
Data | (Geerbt von Exception.) |
![]() |
HelpLink | (Geerbt von Exception.) |
![]() |
HResult | (Geerbt von Exception.) |
![]() |
InnerException | (Geerbt von Exception.) |
![]() |
Message | (Geerbt von Exception.) |
![]() |
Source | (Geerbt von Exception.) |
![]() |
StackTrace | (Geerbt von Exception.) |
![]() |
TargetSite | (Geerbt von Exception.) |
Zum Anfang
Methoden
| Name | Beschreibung | |
|---|---|---|
![]() |
Equals | (Geerbt von Object.) |
![]() |
Finalize | (Geerbt von Object.) |
![]() |
GetBaseException | (Geerbt von Exception.) |
![]() |
GetHashCode | (Geerbt von Object.) |
![]() |
GetObjectData | Sicherheitskritisch (Geerbt von Exception.) |
![]() |
GetType | (Geerbt von Exception.) |
![]() |
MemberwiseClone | (Geerbt von Object.) |
![]() |
ToString | (Geerbt von Exception.) |
Zum Anfang
Ereignisse
| Name | Beschreibung | |
|---|---|---|
![]() |
SerializeObjectState | (Geerbt von Exception.) |
Zum Anfang
Hinweise
The following methods are restricted to PipelineBuffer objects in Output mode:
Beispiele
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();
}
}
}
Threadsicherheit
Alle öffentlichen static (Shared in Visual Basic)-Elemente dieses Typs sind Threadsicher. Für Instanzelemente wird die Threadsicherheit nicht gewährleistet.
.gif)
.gif)
.gif)
.gif)