IVsRunningDocTableEvents4.OnAfterLastDocumentUnlock 方法
激发,在运行后最后一个单据文档表 (RDT)锁定。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop.8.0(在 Microsoft.VisualStudio.Shell.Interop.8.0.dll 中)
语法
声明
Function OnAfterLastDocumentUnlock ( _
pHier As IVsHierarchy, _
itemid As UInteger, _
pszMkDocument As String, _
fClosedWithoutSaving As Integer _
) As Integer
int OnAfterLastDocumentUnlock(
IVsHierarchy pHier,
uint itemid,
string pszMkDocument,
int fClosedWithoutSaving
)
参数
- pHier
类型:Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] 拥有要锁定的文档的 IVsHierarchy 对象。
- itemid
类型:System.UInt32
[in] 在层次结构中的项 ID。这是唯一标识符或它可以是下列值之一: VSITEMID_NIL、 VSITEMID_ROOT或 VSITEMID_SELECTION。
- pszMkDocument
类型:System.String
[in] 要锁定的文档的路径。
- fClosedWithoutSaving
类型:System.Int32
[in] true ,如果关闭文档,不保存;否则 false。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell80.idl:
[C++]
HRESULT OnAfterLastDocumentUnlock(
[in] IVsHierarchy* pHier,
[in] VSITEMID itemid,
[in] LPCOLESTR pszMkDocument,
[in] BOOL fClosedWithoutSaving
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。