SGDeContent.DataTypes.Content.Content C# (CSharp) 메소드

Content() 공개 메소드

public Content ( XmlDocument doc, ContentTypes type, double version ) : System
doc System.Xml.XmlDocument
type ContentTypes
version double
리턴 System
        public Content(XmlDocument doc, ContentTypes type, double version)
        {
            this.document = doc;
            this.Type = type;
            this.Version = version;
        }
Content