├── .all-contributorsrc ├── .config └── dotnet-tools.json ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NUGET.md ├── OpenGraphNet.sln ├── OpenGraphNet.sln.DotSettings ├── README.md ├── documentation ├── .gitignore ├── README.md ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── documentation │ ├── accessing-values.md │ ├── complete-example.md │ ├── creating-graph-data.md │ ├── intro.md │ ├── parsing-namespaces.md │ ├── parsing-url.md │ ├── toc.yml │ └── writing-namespaces.md ├── index.md ├── templates │ └── default │ │ ├── ManagedReference.common.js │ │ ├── ManagedReference.extension.js │ │ ├── ManagedReference.html.primary.js │ │ ├── ManagedReference.html.primary.tmpl │ │ ├── RestApi.common.js │ │ ├── RestApi.extension.js │ │ ├── RestApi.html.primary.js │ │ ├── RestApi.html.primary.tmpl │ │ ├── UniversalReference.common.js │ │ ├── UniversalReference.extension.js │ │ ├── UniversalReference.html.primary.js │ │ ├── UniversalReference.html.primary.tmpl │ │ ├── common.js │ │ ├── conceptual.extension.js │ │ ├── conceptual.html.primary.js │ │ ├── conceptual.html.primary.tmpl │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── layout │ │ └── _master.tmpl │ │ ├── logo.svg │ │ ├── partials │ │ ├── _affix.liquid │ │ ├── _breadcrumb.liquid │ │ ├── _footer.liquid │ │ ├── _head.liquid │ │ ├── _logo.liquid │ │ ├── _navbar.liquid │ │ ├── _scripts.liquid │ │ ├── _toc.liquid │ │ ├── affix.tmpl.partial │ │ ├── breadcrumb.tmpl.partial │ │ ├── class.header.tmpl.partial │ │ ├── class.tmpl.partial │ │ ├── classSubtitle.tmpl.partial │ │ ├── customMREFContent.tmpl.partial │ │ ├── enum.tmpl.partial │ │ ├── footer.tmpl.partial │ │ ├── head.tmpl.partial │ │ ├── li.tmpl.partial │ │ ├── logo.tmpl.partial │ │ ├── namespace.tmpl.partial │ │ ├── namespaceSubtitle.tmpl.partial │ │ ├── navbar.tmpl.partial │ │ ├── rest.child.tmpl.partial │ │ ├── rest.tmpl.partial │ │ ├── scripts.tmpl.partial │ │ ├── searchResults.tmpl.partial │ │ ├── title.tmpl.partial │ │ ├── toc.tmpl.partial │ │ └── uref │ │ │ ├── class.header.tmpl.partial │ │ │ ├── class.tmpl.partial │ │ │ ├── enum.tmpl.partial │ │ │ └── parameters.tmpl.partial │ │ ├── search-stopwords.json │ │ ├── styles │ │ ├── docfx.css │ │ ├── docfx.js │ │ ├── docfx.vendor.css │ │ ├── docfx.vendor.js │ │ ├── lunr.js │ │ ├── lunr.min.js │ │ ├── main.css │ │ ├── main.js │ │ └── search-worker.js │ │ ├── toc.extension.js │ │ ├── toc.html.js │ │ ├── toc.html.tmpl │ │ └── token.json └── toc.yml ├── src └── OpenGraphNet │ ├── GlobalUsings.cs │ ├── HttpDownloader.cs │ ├── InvalidSpecificationException.cs │ ├── Messages.Designer.cs │ ├── Messages.resx │ ├── Metadata │ ├── MetadataBase.cs │ ├── MetadataHelperExtensions.cs │ ├── NullMetadata.cs │ ├── PropertyMetadata.cs │ ├── StructuredMetadata.cs │ └── StructuredMetadataDictionary.cs │ ├── Namespaces │ ├── NamespaceRegistry.cs │ ├── OpenGraphNamespace.cs │ └── RegistryNamespace.cs │ ├── OpenGraph.cs │ ├── OpenGraphNet.csproj │ ├── StyleCop.ruleset │ └── Utilities.cs └── tests └── OpenGraphNet.Tests ├── GlobalUsings.cs ├── MetaElementTests.cs ├── OpenGraphNet.Tests.csproj ├── OpenGraphTests.cs ├── StyleCop.ruleset └── TestHtml └── YouTubeTagsInBody.htm /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/LICENSE -------------------------------------------------------------------------------- /NUGET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/NUGET.md -------------------------------------------------------------------------------- /OpenGraphNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/OpenGraphNet.sln -------------------------------------------------------------------------------- /OpenGraphNet.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/OpenGraphNet.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/README.md -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/api/.gitignore -------------------------------------------------------------------------------- /documentation/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/api/index.md -------------------------------------------------------------------------------- /documentation/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/docfx.json -------------------------------------------------------------------------------- /documentation/documentation/accessing-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/accessing-values.md -------------------------------------------------------------------------------- /documentation/documentation/complete-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/complete-example.md -------------------------------------------------------------------------------- /documentation/documentation/creating-graph-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/creating-graph-data.md -------------------------------------------------------------------------------- /documentation/documentation/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/intro.md -------------------------------------------------------------------------------- /documentation/documentation/parsing-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/parsing-namespaces.md -------------------------------------------------------------------------------- /documentation/documentation/parsing-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/parsing-url.md -------------------------------------------------------------------------------- /documentation/documentation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/toc.yml -------------------------------------------------------------------------------- /documentation/documentation/writing-namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/documentation/writing-namespaces.md -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/index.md -------------------------------------------------------------------------------- /documentation/templates/default/ManagedReference.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/ManagedReference.common.js -------------------------------------------------------------------------------- /documentation/templates/default/ManagedReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/ManagedReference.extension.js -------------------------------------------------------------------------------- /documentation/templates/default/ManagedReference.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/ManagedReference.html.primary.js -------------------------------------------------------------------------------- /documentation/templates/default/ManagedReference.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/ManagedReference.html.primary.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/RestApi.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/RestApi.common.js -------------------------------------------------------------------------------- /documentation/templates/default/RestApi.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/RestApi.extension.js -------------------------------------------------------------------------------- /documentation/templates/default/RestApi.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/RestApi.html.primary.js -------------------------------------------------------------------------------- /documentation/templates/default/RestApi.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/RestApi.html.primary.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/UniversalReference.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/UniversalReference.common.js -------------------------------------------------------------------------------- /documentation/templates/default/UniversalReference.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/UniversalReference.extension.js -------------------------------------------------------------------------------- /documentation/templates/default/UniversalReference.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/UniversalReference.html.primary.js -------------------------------------------------------------------------------- /documentation/templates/default/UniversalReference.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/UniversalReference.html.primary.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/common.js -------------------------------------------------------------------------------- /documentation/templates/default/conceptual.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/conceptual.extension.js -------------------------------------------------------------------------------- /documentation/templates/default/conceptual.html.primary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/conceptual.html.primary.js -------------------------------------------------------------------------------- /documentation/templates/default/conceptual.html.primary.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/conceptual.html.primary.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/favicon.ico -------------------------------------------------------------------------------- /documentation/templates/default/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /documentation/templates/default/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /documentation/templates/default/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /documentation/templates/default/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /documentation/templates/default/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /documentation/templates/default/layout/_master.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/layout/_master.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/logo.svg -------------------------------------------------------------------------------- /documentation/templates/default/partials/_affix.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_affix.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_breadcrumb.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_breadcrumb.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_footer.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_head.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_head.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_logo.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_logo.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_navbar.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_navbar.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_scripts.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_scripts.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/_toc.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/_toc.liquid -------------------------------------------------------------------------------- /documentation/templates/default/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/affix.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/breadcrumb.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/breadcrumb.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/class.header.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/class.header.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/class.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/class.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/classSubtitle.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/classSubtitle.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/customMREFContent.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/customMREFContent.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/enum.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/enum.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/head.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/li.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/li.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/logo.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/logo.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/namespace.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/namespace.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/namespaceSubtitle.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/namespaceSubtitle.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/navbar.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/navbar.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/rest.child.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/rest.child.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/rest.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/rest.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/scripts.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/scripts.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/searchResults.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/searchResults.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/title.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/title.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/toc.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/toc.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/uref/class.header.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/uref/class.header.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/uref/class.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/uref/class.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/uref/enum.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/uref/enum.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/partials/uref/parameters.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/partials/uref/parameters.tmpl.partial -------------------------------------------------------------------------------- /documentation/templates/default/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/search-stopwords.json -------------------------------------------------------------------------------- /documentation/templates/default/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/docfx.css -------------------------------------------------------------------------------- /documentation/templates/default/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/docfx.js -------------------------------------------------------------------------------- /documentation/templates/default/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/docfx.vendor.css -------------------------------------------------------------------------------- /documentation/templates/default/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/docfx.vendor.js -------------------------------------------------------------------------------- /documentation/templates/default/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/lunr.js -------------------------------------------------------------------------------- /documentation/templates/default/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/lunr.min.js -------------------------------------------------------------------------------- /documentation/templates/default/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/main.css -------------------------------------------------------------------------------- /documentation/templates/default/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/main.js -------------------------------------------------------------------------------- /documentation/templates/default/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/styles/search-worker.js -------------------------------------------------------------------------------- /documentation/templates/default/toc.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/toc.extension.js -------------------------------------------------------------------------------- /documentation/templates/default/toc.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/toc.html.js -------------------------------------------------------------------------------- /documentation/templates/default/toc.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/toc.html.tmpl -------------------------------------------------------------------------------- /documentation/templates/default/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/templates/default/token.json -------------------------------------------------------------------------------- /documentation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/documentation/toc.yml -------------------------------------------------------------------------------- /src/OpenGraphNet/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/GlobalUsings.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/HttpDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/HttpDownloader.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/InvalidSpecificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/InvalidSpecificationException.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Messages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Messages.Designer.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Messages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Messages.resx -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/MetadataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/MetadataBase.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/MetadataHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/MetadataHelperExtensions.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/NullMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/NullMetadata.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/PropertyMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/PropertyMetadata.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/StructuredMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/StructuredMetadata.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Metadata/StructuredMetadataDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Metadata/StructuredMetadataDictionary.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Namespaces/NamespaceRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Namespaces/NamespaceRegistry.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Namespaces/OpenGraphNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Namespaces/OpenGraphNamespace.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/Namespaces/RegistryNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Namespaces/RegistryNamespace.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/OpenGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/OpenGraph.cs -------------------------------------------------------------------------------- /src/OpenGraphNet/OpenGraphNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/OpenGraphNet.csproj -------------------------------------------------------------------------------- /src/OpenGraphNet/StyleCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/StyleCop.ruleset -------------------------------------------------------------------------------- /src/OpenGraphNet/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/src/OpenGraphNet/Utilities.cs -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/MetaElementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/MetaElementTests.cs -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/OpenGraphNet.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/OpenGraphNet.Tests.csproj -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/OpenGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/OpenGraphTests.cs -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/StyleCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/StyleCop.ruleset -------------------------------------------------------------------------------- /tests/OpenGraphNet.Tests/TestHtml/YouTubeTagsInBody.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsey/OpenGraph-Net/HEAD/tests/OpenGraphNet.Tests/TestHtml/YouTubeTagsInBody.htm --------------------------------------------------------------------------------