Beispiel #1
0
        public static void WriteExamplesSectionForNamespace(this MamlWriter writer, Context context, string targetNamespace)
        {
            var documentationInfo = context.DocumentationManager.GetNamespaceDocumentationInfo(targetNamespace);

            writer.WriteExamplesSection(documentationInfo);
        }
Beispiel #2
0
        public static void WriteExamplesSectionForObject(this MamlWriter writer, Context context, XmlSchemaObject obj)
        {
            var documentationInfo = context.DocumentationManager.GetObjectDocumentationInfo(obj);

            writer.WriteExamplesSection(documentationInfo);
        }
Beispiel #3
0
        public static void WriteExamplesSectionForSchemaSet(this MamlWriter writer, Context context)
        {
            var documentationInfo = context.DocumentationManager.GetSchemaSetDocumentationInfo();

            writer.WriteExamplesSection(documentationInfo);
        }