NAnt.MSBuild.MSBuildProject.LoadGuid C# (CSharp) Method

LoadGuid() public static method

public static LoadGuid ( XmlElement e ) : string
e System.Xml.XmlElement
return string
        public static string LoadGuid(XmlElement e)
        {
            XmlNamespaceManager nm = new XmlNamespaceManager(e.OwnerDocument.NameTable);
            nm.AddNamespace("x", e.NamespaceURI);
            return LoadGuid(e,nm);
        }

Same methods

MSBuildProject::LoadGuid ( XmlDocument doc ) : string
MSBuildProject::LoadGuid ( XmlElement e, XmlNamespaceManager nm ) : string

Usage Example

示例#1
0
 public string LoadGuid(XmlElement xmlDefinition)
 {
     return(MSBuildProject.LoadGuid(xmlDefinition));
 }