示例#1
0
 /// <summary>
 /// Called to shutdown the extension.
 /// </summary>
 public void Shutdown()
 {
     workspaceHelper = null;
 }
示例#2
0
 /// <summary>
 /// Initializes the workspace extension.
 /// </summary>
 /// <param name="workspaceHelper">Provides a weak reference to the workspace.</param>
 public void Init(IWorkspaceHelper workspaceHelper)
 {
     this.workspaceHelper = workspaceHelper;
 }
		/// <summary>
		/// Called to shutdown the extension.
		/// </summary>
		public void Shutdown()
		{
			workspaceHelper = null;
		}
		/// <summary>
		/// Initializes the workspace extension.
		/// </summary>
		/// <param name="workspaceHelper">Provides a weak reference to the workspace.</param>
		public void Init(IWorkspaceHelper workspaceHelper)
		{
			this.workspaceHelper = workspaceHelper;
		}
示例#5
0
 /// <summary>
 ///     Informs the extension that its workspace helper (and workspace) are going away.
 /// </summary>
 public virtual void Shutdown()
 {
     _WorkspaceHelper = null;
 }
示例#6
0
 /// <summary>
 ///     Initializes the extension, passing in a reference to its workspace helper.
 /// </summary>
 /// <param name="pWorkspaceHelper">The workspace helper.</param>
 public virtual void Init(IWorkspaceHelper pWorkspaceHelper)
 {
     _WorkspaceHelper = pWorkspaceHelper;
 }