| WikiListTOnEnumItemsFailed Method |
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Generators.PrimitiveAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax protected virtual void OnEnumItemsFailed(
Exception exception
)
Protected Overridable Sub OnEnumItemsFailed (
exception As Exception
)
Dim exception As Exception
Me.OnEnumItemsFailed(exception)
protected:
virtual void OnEnumItemsFailed(
Exception^ exception
)
abstract OnEnumItemsFailed :
exception : Exception -> unit
override OnEnumItemsFailed :
exception : Exception -> unit
Parameters
- exception Exception
- The raised exception.
Remarks
Implementation can throw other more specific errors in the implementation.
The caller will throw the original exception after calling this method
if this function does not throw any other exception in the implementation.
The default implementation does nothing.
See Also