SGDeContent.DataTypes.Content.Content C# (CSharp) Method

Content() public method

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