SharpSVN:“上次调用已取消”是什么意思?意思是?
我正在使用 SharpSVN 1.6 和 .Net 3.5。
我在几个 SvnArgs(UpdateArgs、CommitArgs 等)中看到了属性 IsLastInitationCanceled
,但我找不到有关它的文档。
有人可以告诉我这是什么意思吗?
谢谢!
I'm using SharpSVN 1.6 with .Net 3.5.
I saw the property IsLastInvocationCanceled
in a few SvnArgs (UpdateArgs, CommitArgs etc.), and I couldn't find a documentation on it.
Can someone please tell me what does it mean?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您禁用了
ThrowOnWarning
和/或ThrowOnError
,则在下次调用时,如果您的计算机上(分别)出现警告或错误,则IsLastInitationCanceled
将为 true。最后一次调用。If you have
ThrowOnWarning
and/orThrowOnError
disabled, on your next callIsLastInvocationCanceled
will be true if a warning or error (respectively) occurred on your last invocation.经过检查,预期的行为是,仅当设置了 EventArgs 上的
Cancel
属性(以取消当前操作)时,IsLastInitationCanceled
才为 true,像这样:After checking, the intended behavior is that
IsLastInvocationCanceled
is only true when theCancel
property on the EventArgs is set (to cancel the current operation), like so: