Microsoft.VisualStudio.Project.DocumentManager.GetFullPathForDocument C# (CSharp) Method

GetFullPathForDocument() protected method

protected GetFullPathForDocument ( ) : string
return string
        protected string GetFullPathForDocument()
        {
            string fullPath = String.Empty;

            Debug.Assert(this.node != null, "No node has been initialized for the document manager");

            // Get the URL representing the item
            fullPath = this.node.GetMKDocument();

            Debug.Assert(!String.IsNullOrEmpty(fullPath), "Could not retrive the fullpath for the node" + this.Node.Id.ToString(CultureInfo.CurrentCulture));
            return fullPath;
        }