BlogML.BlogMLResource.GetSchemaStream C# (CSharp) 메소드

GetSchemaStream() 공개 정적인 메소드

public static GetSchemaStream ( ) : Stream
리턴 Stream
        public static Stream GetSchemaStream()
        {
            Stream stream = typeof(BlogMLResource).Assembly.GetManifestResourceStream("BlogML.BlogML.xsd");
            if (stream == null)
                throw new InvalidOperationException("Schema not found");
            return stream;
        }