// niklas@protocol7.com // 0 using System; using System.Xml; namespace SharpVectors.Dom.Css { /// /// This interface allows the DOM user to create a CSSStyleSheet /// outside the context of a document. There is no way to /// associate the new CSSStyleSheet with a document in DOM /// Level 2. /// /// This interface should inherit from IDomImplementation /// but System.Xml does not have this interface, just a class. /// You can not inherit from a class in an interface. /// public interface IDomImplementationCss { /// /// Creates a new CSSStyleSheet. /// /// The advisory title. See also the Style Sheet Interfaces section. /// The comma-separated list of media associated with the new style sheet. See also the Style Sheet Interfaces section. /// A new CSS style sheet. ICssStyleSheet CreateCssStyleSheet(string title, string media); //bool HasFeature(string feature,string version); //DocumentType CreateDocumentType(string qualifiedName, string publicId, string systemId); //Document CreateDocument(string namespaceUri, string qualifiedName, DocumentType doctype); } }