Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Raises an error identified by the specified HRESULT and allows execution to be cancelled.
Namespace: Microsoft.SqlServer.Dts.ManagedMsg
Assembly: Microsoft.SqlServer.DtsMsg (in Microsoft.SqlServer.DtsMsg.dll)
Syntax
'Declaration
Public Sub FireError ( _
hResult As Integer, _
<OutAttribute> ByRef bCancel As Boolean _
)
'Usage
Dim instance As ErrorSupport
Dim hResult As Integer
Dim bCancel As Boolean
instance.FireError(hResult, bCancel)
public void FireError(
int hResult,
out bool bCancel
)
public:
void FireError(
int hResult,
[OutAttribute] bool% bCancel
)
member FireError :
hResult:int *
bCancel:bool byref -> unit
public function FireError(
hResult : int,
bCancel : boolean
)
Parameters
- hResult
Type: System.Int32
The HRESULT of the underlying COM error.
- bCancel
Type: System.Boolean%
true to cancel execution; otherwise, false.