').attr('class', 'item-href').text(itemRawHref);
+ var itemBriefNode = $('
').attr('class', 'item-brief').text(itemBrief);
+ itemNode.append(itemTitleNode).append(itemHrefNode).append(itemBriefNode);
+ return itemNode;
+ })
+ );
+ query.split(/\s+/).forEach(function (word) {
+ if (word !== '') {
+ $('#search-results>.sr-items *').mark(word);
+ }
+ });
+ }
+ });
+ }
+ }
+ };
+
+ // Update href in navbar
+ function renderNavbar() {
+ var navbar = $('#navbar ul')[0];
+ if (typeof (navbar) === 'undefined') {
+ loadNavbar();
+ } else {
+ $('#navbar ul a.active').parents('li').addClass(active);
+ renderBreadcrumb();
+ showSearch();
+ }
+
+ function showSearch() {
+ if ($('#search-results').length !== 0) {
+ $('#search').show();
+ $('body').trigger("searchEvent");
+ }
+ }
+
+ function loadNavbar() {
+ var navbarPath = $("meta[property='docfx\\:navrel']").attr("content");
+ if (!navbarPath) {
+ return;
+ }
+ navbarPath = navbarPath.replace(/\\/g, '/');
+ var tocPath = $("meta[property='docfx\\:tocrel']").attr("content") || '';
+ if (tocPath) tocPath = tocPath.replace(/\\/g, '/');
+ $.get(navbarPath, function (data) {
+ $(data).find("#toc>ul").appendTo("#navbar");
+ showSearch();
+ var index = navbarPath.lastIndexOf('/');
+ var navrel = '';
+ if (index > -1) {
+ navrel = navbarPath.substr(0, index + 1);
+ }
+ $('#navbar>ul').addClass('navbar-nav');
+ var currentAbsPath = util.getCurrentWindowAbsolutePath();
+ // set active item
+ $('#navbar').find('a[href]').each(function (i, e) {
+ var href = $(e).attr("href");
+ if (util.isRelativePath(href)) {
+ href = navrel + href;
+ $(e).attr("href", href);
+
+ var isActive = false;
+ var originalHref = e.name;
+ if (originalHref) {
+ originalHref = navrel + originalHref;
+ if (util.getDirectory(util.getAbsolutePath(originalHref)) === util.getDirectory(util.getAbsolutePath(tocPath))) {
+ isActive = true;
+ }
+ } else {
+ if (util.getAbsolutePath(href) === currentAbsPath) {
+ var dropdown = $(e).attr('data-toggle') == "dropdown"
+ if (!dropdown) {
+ isActive = true;
+ }
+ }
+ }
+ if (isActive) {
+ $(e).addClass(active);
+ }
+ }
+ });
+ renderNavbar();
+ });
+ }
+ }
+
+ function renderSidebar() {
+ var sidetoc = $('#sidetoggle .sidetoc')[0];
+ if (typeof (sidetoc) === 'undefined') {
+ loadToc();
+ } else {
+ registerTocEvents();
+ if ($('footer').is(':visible')) {
+ $('.sidetoc').addClass('shiftup');
+ }
+
+ // Scroll to active item
+ var top = 0;
+ $('#toc a.active').parents('li').each(function (i, e) {
+ $(e).addClass(active).addClass(expanded);
+ $(e).children('a').addClass(active);
+ })
+ $('#toc a.active').parents('li').each(function (i, e) {
+ top += $(e).position().top;
+ })
+ $('.sidetoc').scrollTop(top - 50);
+
+ if ($('footer').is(':visible')) {
+ $('.sidetoc').addClass('shiftup');
+ }
+
+ renderBreadcrumb();
+ }
+
+ function registerTocEvents() {
+ var tocFilterInput = $('#toc_filter_input');
+ var tocFilterClearButton = $('#toc_filter_clear');
+
+ $('.toc .nav > li > .expand-stub').click(function (e) {
+ $(e.target).parent().toggleClass(expanded);
+ });
+ $('.toc .nav > li > .expand-stub + a:not([href])').click(function (e) {
+ $(e.target).parent().toggleClass(expanded);
+ });
+ tocFilterInput.on('input', function (e) {
+ var val = this.value;
+ //Save filter string to local session storage
+ if (typeof(Storage) !== "undefined") {
+ try {
+ sessionStorage.filterString = val;
+ }
+ catch(e)
+ {}
+ }
+ if (val === '') {
+ // Clear 'filtered' class
+ $('#toc li').removeClass(filtered).removeClass(hide);
+ tocFilterClearButton.fadeOut();
+ return;
+ }
+ tocFilterClearButton.fadeIn();
+
+ // set all parent nodes status
+ $('#toc li>a').filter(function (i, e) {
+ return $(e).siblings().length > 0
+ }).each(function (i, anchor) {
+ var parent = $(anchor).parent();
+ parent.addClass(hide);
+ parent.removeClass(show);
+ parent.removeClass(filtered);
+ })
+
+ // Get leaf nodes
+ $('#toc li>a').filter(function (i, e) {
+ return $(e).siblings().length === 0
+ }).each(function (i, anchor) {
+ var text = $(anchor).attr('title');
+ var parent = $(anchor).parent();
+ var parentNodes = parent.parents('ul>li');
+ for (var i = 0; i < parentNodes.length; i++) {
+ var parentText = $(parentNodes[i]).children('a').attr('title');
+ if (parentText) text = parentText + '.' + text;
+ };
+ if (filterNavItem(text, val)) {
+ parent.addClass(show);
+ parent.removeClass(hide);
+ } else {
+ parent.addClass(hide);
+ parent.removeClass(show);
+ }
+ });
+ $('#toc li>a').filter(function (i, e) {
+ return $(e).siblings().length > 0
+ }).each(function (i, anchor) {
+ var parent = $(anchor).parent();
+ if (parent.find('li.show').length > 0) {
+ parent.addClass(show);
+ parent.addClass(filtered);
+ parent.removeClass(hide);
+ } else {
+ parent.addClass(hide);
+ parent.removeClass(show);
+ parent.removeClass(filtered);
+ }
+ })
+
+ function filterNavItem(name, text) {
+ if (!text) return true;
+ if (name && name.toLowerCase().indexOf(text.toLowerCase()) > -1) return true;
+ return false;
+ }
+ });
+
+ // toc filter clear button
+ tocFilterClearButton.hide();
+ tocFilterClearButton.on("click", function(e){
+ tocFilterInput.val("");
+ tocFilterInput.trigger('input');
+ if (typeof(Storage) !== "undefined") {
+ try {
+ sessionStorage.filterString = "";
+ }
+ catch(e)
+ {}
+ }
+ });
+
+ //Set toc filter from local session storage on page load
+ if (typeof(Storage) !== "undefined") {
+ try {
+ tocFilterInput.val(sessionStorage.filterString);
+ tocFilterInput.trigger('input');
+ }
+ catch(e)
+ {}
+ }
+ }
+
+ function loadToc() {
+ var tocPath = $("meta[property='docfx\\:tocrel']").attr("content");
+ if (!tocPath) {
+ return;
+ }
+ tocPath = tocPath.replace(/\\/g, '/');
+ $('#sidetoc').load(tocPath + " #sidetoggle > div", function () {
+ var index = tocPath.lastIndexOf('/');
+ var tocrel = '';
+ if (index > -1) {
+ tocrel = tocPath.substr(0, index + 1);
+ }
+ var currentHref = util.getCurrentWindowAbsolutePath();
+ if(!currentHref.endsWith('.html')) {
+ currentHref += '.html';
+ }
+ $('#sidetoc').find('a[href]').each(function (i, e) {
+ var href = $(e).attr("href");
+ if (util.isRelativePath(href)) {
+ href = tocrel + href;
+ $(e).attr("href", href);
+ }
+
+ if (util.getAbsolutePath(e.href) === currentHref) {
+ $(e).addClass(active);
+ }
+
+ $(e).breakWord();
+ });
+
+ renderSidebar();
+ });
+ }
+ }
+
+ function renderBreadcrumb() {
+ var breadcrumb = [];
+ $('#navbar a.active').each(function (i, e) {
+ breadcrumb.push({
+ href: e.href,
+ name: e.innerHTML
+ });
+ })
+ $('#toc a.active').each(function (i, e) {
+ breadcrumb.push({
+ href: e.href,
+ name: e.innerHTML
+ });
+ })
+
+ var html = util.formList(breadcrumb, 'breadcrumb');
+ $('#breadcrumb').html(html);
+ }
+
+ //Setup Affix
+ function renderAffix() {
+ var hierarchy = getHierarchy();
+ if (!hierarchy || hierarchy.length <= 0) {
+ $("#affix").hide();
+ }
+ else {
+ var html = util.formList(hierarchy, ['nav', 'bs-docs-sidenav']);
+ $("#affix>div").empty().append(html);
+ if ($('footer').is(':visible')) {
+ $(".sideaffix").css("bottom", "70px");
+ }
+ $('#affix a').click(function(e) {
+ var scrollspy = $('[data-spy="scroll"]').data()['bs.scrollspy'];
+ var target = e.target.hash;
+ if (scrollspy && target) {
+ scrollspy.activate(target);
+ }
+ });
+ }
+
+ function getHierarchy() {
+ // supported headers are h1, h2, h3, and h4
+ var $headers = $($.map(['h1', 'h2', 'h3', 'h4'], function (h) { return ".article article " + h; }).join(", "));
+
+ // a stack of hierarchy items that are currently being built
+ var stack = [];
+ $headers.each(function (i, e) {
+ if (!e.id) {
+ return;
+ }
+
+ var item = {
+ name: htmlEncode($(e).text()),
+ href: "#" + e.id,
+ items: []
+ };
+
+ if (!stack.length) {
+ stack.push({ type: e.tagName, siblings: [item] });
+ return;
+ }
+
+ var frame = stack[stack.length - 1];
+ if (e.tagName === frame.type) {
+ frame.siblings.push(item);
+ } else if (e.tagName[1] > frame.type[1]) {
+ // we are looking at a child of the last element of frame.siblings.
+ // push a frame onto the stack. After we've finished building this item's children,
+ // we'll attach it as a child of the last element
+ stack.push({ type: e.tagName, siblings: [item] });
+ } else { // e.tagName[1] < frame.type[1]
+ // we are looking at a sibling of an ancestor of the current item.
+ // pop frames from the stack, building items as we go, until we reach the correct level at which to attach this item.
+ while (e.tagName[1] < stack[stack.length - 1].type[1]) {
+ buildParent();
+ }
+ if (e.tagName === stack[stack.length - 1].type) {
+ stack[stack.length - 1].siblings.push(item);
+ } else {
+ stack.push({ type: e.tagName, siblings: [item] });
+ }
+ }
+ });
+ while (stack.length > 1) {
+ buildParent();
+ }
+
+ function buildParent() {
+ var childrenToAttach = stack.pop();
+ var parentFrame = stack[stack.length - 1];
+ var parent = parentFrame.siblings[parentFrame.siblings.length - 1];
+ $.each(childrenToAttach.siblings, function (i, child) {
+ parent.items.push(child);
+ });
+ }
+ if (stack.length > 0) {
+
+ var topLevel = stack.pop().siblings;
+ if (topLevel.length === 1) { // if there's only one topmost header, dump it
+ return topLevel[0].items;
+ }
+ return topLevel;
+ }
+ return undefined;
+ }
+
+ function htmlEncode(str) {
+ if (!str) return str;
+ return str
+ .replace(/&/g, '&')
+ .replace(/"/g, '"')
+ .replace(/'/g, ''')
+ .replace(//g, '>');
+ }
+
+ function htmlDecode(value) {
+ if (!str) return str;
+ return value
+ .replace(/"/g, '"')
+ .replace(/'/g, "'")
+ .replace(/</g, '<')
+ .replace(/>/g, '>')
+ .replace(/&/g, '&');
+ }
+
+ function cssEscape(str) {
+ // see: http://stackoverflow.com/questions/2786538/need-to-escape-a-special-character-in-a-jquery-selector-string#answer-2837646
+ if (!str) return str;
+ return str
+ .replace(/[!"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, "\\$&");
+ }
+ }
+
+ // Show footer
+ function renderFooter() {
+ initFooter();
+ $(window).on("scroll", showFooterCore);
+
+ function initFooter() {
+ if (needFooter()) {
+ shiftUpBottomCss();
+ $("footer").show();
+ } else {
+ resetBottomCss();
+ $("footer").hide();
+ }
+ }
+
+ function showFooterCore() {
+ if (needFooter()) {
+ shiftUpBottomCss();
+ $("footer").fadeIn();
+ } else {
+ resetBottomCss();
+ $("footer").fadeOut();
+ }
+ }
+
+ function needFooter() {
+ var scrollHeight = $(document).height();
+ var scrollPosition = $(window).height() + $(window).scrollTop();
+ return (scrollHeight - scrollPosition) < 1;
+ }
+
+ function resetBottomCss() {
+ $(".sidetoc").removeClass("shiftup");
+ $(".sideaffix").removeClass("shiftup");
+ }
+
+ function shiftUpBottomCss() {
+ $(".sidetoc").addClass("shiftup");
+ $(".sideaffix").addClass("shiftup");
+ }
+ }
+
+ function renderLogo() {
+ // For LOGO SVG
+ // Replace SVG with inline SVG
+ // http://stackoverflow.com/questions/11978995/how-to-change-color-of-svg-image-using-css-jquery-svg-image-replacement
+ jQuery('img.svg').each(function () {
+ var $img = jQuery(this);
+ var imgID = $img.attr('id');
+ var imgClass = $img.attr('class');
+ var imgURL = $img.attr('src');
+
+ jQuery.get(imgURL, function (data) {
+ // Get the SVG tag, ignore the rest
+ var $svg = jQuery(data).find('svg');
+
+ // Add replaced image's ID to the new SVG
+ if (typeof imgID !== 'undefined') {
+ $svg = $svg.attr('id', imgID);
+ }
+ // Add replaced image's classes to the new SVG
+ if (typeof imgClass !== 'undefined') {
+ $svg = $svg.attr('class', imgClass + ' replaced-svg');
+ }
+
+ // Remove any invalid XML tags as per http://validator.w3.org
+ $svg = $svg.removeAttr('xmlns:a');
+
+ // Replace image with new SVG
+ $img.replaceWith($svg);
+
+ }, 'xml');
+ });
+ }
+
+ function renderTabs() {
+ var contentAttrs = {
+ id: 'data-bi-id',
+ name: 'data-bi-name',
+ type: 'data-bi-type'
+ };
+
+ var Tab = (function () {
+ function Tab(li, a, section) {
+ this.li = li;
+ this.a = a;
+ this.section = section;
+ }
+ Object.defineProperty(Tab.prototype, "tabIds", {
+ get: function () { return this.a.getAttribute('data-tab').split(' '); },
+ enumerable: true,
+ configurable: true
+ });
+ Object.defineProperty(Tab.prototype, "condition", {
+ get: function () { return this.a.getAttribute('data-condition'); },
+ enumerable: true,
+ configurable: true
+ });
+ Object.defineProperty(Tab.prototype, "visible", {
+ get: function () { return !this.li.hasAttribute('hidden'); },
+ set: function (value) {
+ if (value) {
+ this.li.removeAttribute('hidden');
+ this.li.removeAttribute('aria-hidden');
+ }
+ else {
+ this.li.setAttribute('hidden', 'hidden');
+ this.li.setAttribute('aria-hidden', 'true');
+ }
+ },
+ enumerable: true,
+ configurable: true
+ });
+ Object.defineProperty(Tab.prototype, "selected", {
+ get: function () { return !this.section.hasAttribute('hidden'); },
+ set: function (value) {
+ if (value) {
+ this.a.setAttribute('aria-selected', 'true');
+ this.a.tabIndex = 0;
+ this.section.removeAttribute('hidden');
+ this.section.removeAttribute('aria-hidden');
+ }
+ else {
+ this.a.setAttribute('aria-selected', 'false');
+ this.a.tabIndex = -1;
+ this.section.setAttribute('hidden', 'hidden');
+ this.section.setAttribute('aria-hidden', 'true');
+ }
+ },
+ enumerable: true,
+ configurable: true
+ });
+ Tab.prototype.focus = function () {
+ this.a.focus();
+ };
+ return Tab;
+ }());
+
+ initTabs(document.body);
+
+ function initTabs(container) {
+ var queryStringTabs = readTabsQueryStringParam();
+ var elements = container.querySelectorAll('.tabGroup');
+ var state = { groups: [], selectedTabs: [] };
+ for (var i = 0; i < elements.length; i++) {
+ var group = initTabGroup(elements.item(i));
+ if (!group.independent) {
+ updateVisibilityAndSelection(group, state);
+ state.groups.push(group);
+ }
+ }
+ container.addEventListener('click', function (event) { return handleClick(event, state); });
+ if (state.groups.length === 0) {
+ return state;
+ }
+ selectTabs(queryStringTabs, container);
+ updateTabsQueryStringParam(state);
+ notifyContentUpdated();
+ return state;
+ }
+
+ function initTabGroup(element) {
+ var group = {
+ independent: element.hasAttribute('data-tab-group-independent'),
+ tabs: []
+ };
+ var li = element.firstElementChild.firstElementChild;
+ while (li) {
+ var a = li.firstElementChild;
+ a.setAttribute(contentAttrs.name, 'tab');
+ var dataTab = a.getAttribute('data-tab').replace(/\+/g, ' ');
+ a.setAttribute('data-tab', dataTab);
+ var section = element.querySelector("[id=\"" + a.getAttribute('aria-controls') + "\"]");
+ var tab = new Tab(li, a, section);
+ group.tabs.push(tab);
+ li = li.nextElementSibling;
+ }
+ element.setAttribute(contentAttrs.name, 'tab-group');
+ element.tabGroup = group;
+ return group;
+ }
+
+ function updateVisibilityAndSelection(group, state) {
+ var anySelected = false;
+ var firstVisibleTab;
+ for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) {
+ var tab = _a[_i];
+ tab.visible = tab.condition === null || state.selectedTabs.indexOf(tab.condition) !== -1;
+ if (tab.visible) {
+ if (!firstVisibleTab) {
+ firstVisibleTab = tab;
+ }
+ }
+ tab.selected = tab.visible && arraysIntersect(state.selectedTabs, tab.tabIds);
+ anySelected = anySelected || tab.selected;
+ }
+ if (!anySelected) {
+ for (var _b = 0, _c = group.tabs; _b < _c.length; _b++) {
+ var tabIds = _c[_b].tabIds;
+ for (var _d = 0, tabIds_1 = tabIds; _d < tabIds_1.length; _d++) {
+ var tabId = tabIds_1[_d];
+ var index = state.selectedTabs.indexOf(tabId);
+ if (index === -1) {
+ continue;
+ }
+ state.selectedTabs.splice(index, 1);
+ }
+ }
+ var tab = firstVisibleTab;
+ tab.selected = true;
+ state.selectedTabs.push(tab.tabIds[0]);
+ }
+ }
+
+ function getTabInfoFromEvent(event) {
+ if (!(event.target instanceof HTMLElement)) {
+ return null;
+ }
+ var anchor = event.target.closest('a[data-tab]');
+ if (anchor === null) {
+ return null;
+ }
+ var tabIds = anchor.getAttribute('data-tab').split(' ');
+ var group = anchor.parentElement.parentElement.parentElement.tabGroup;
+ if (group === undefined) {
+ return null;
+ }
+ return { tabIds: tabIds, group: group, anchor: anchor };
+ }
+
+ function handleClick(event, state) {
+ var info = getTabInfoFromEvent(event);
+ if (info === null) {
+ return;
+ }
+ event.preventDefault();
+ info.anchor.href = 'javascript:';
+ setTimeout(function () { return info.anchor.href = '#' + info.anchor.getAttribute('aria-controls'); });
+ var tabIds = info.tabIds, group = info.group;
+ var originalTop = info.anchor.getBoundingClientRect().top;
+ if (group.independent) {
+ for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) {
+ var tab = _a[_i];
+ tab.selected = arraysIntersect(tab.tabIds, tabIds);
+ }
+ }
+ else {
+ if (arraysIntersect(state.selectedTabs, tabIds)) {
+ return;
+ }
+ var previousTabId = group.tabs.filter(function (t) { return t.selected; })[0].tabIds[0];
+ state.selectedTabs.splice(state.selectedTabs.indexOf(previousTabId), 1, tabIds[0]);
+ for (var _b = 0, _c = state.groups; _b < _c.length; _b++) {
+ var group_1 = _c[_b];
+ updateVisibilityAndSelection(group_1, state);
+ }
+ updateTabsQueryStringParam(state);
+ }
+ notifyContentUpdated();
+ var top = info.anchor.getBoundingClientRect().top;
+ if (top !== originalTop && event instanceof MouseEvent) {
+ window.scrollTo(0, window.pageYOffset + top - originalTop);
+ }
+ }
+
+ function selectTabs(tabIds) {
+ for (var _i = 0, tabIds_1 = tabIds; _i < tabIds_1.length; _i++) {
+ var tabId = tabIds_1[_i];
+ var a = document.querySelector(".tabGroup > ul > li > a[data-tab=\"" + tabId + "\"]:not([hidden])");
+ if (a === null) {
+ return;
+ }
+ a.dispatchEvent(new CustomEvent('click', { bubbles: true }));
+ }
+ }
+
+ function readTabsQueryStringParam() {
+ var qs = parseQueryString(window.location.search);
+ var t = qs.tabs;
+ if (t === undefined || t === '') {
+ return [];
+ }
+ return t.split(',');
+ }
+
+ function updateTabsQueryStringParam(state) {
+ var qs = parseQueryString(window.location.search);
+ qs.tabs = state.selectedTabs.join();
+ var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash;
+ if (location.href === url) {
+ return;
+ }
+ history.replaceState({}, document.title, url);
+ }
+
+ function toQueryString(args) {
+ var parts = [];
+ for (var name_1 in args) {
+ if (args.hasOwnProperty(name_1) && args[name_1] !== '' && args[name_1] !== null && args[name_1] !== undefined) {
+ parts.push(encodeURIComponent(name_1) + '=' + encodeURIComponent(args[name_1]));
+ }
+ }
+ return parts.join('&');
+ }
+
+ function parseQueryString(queryString) {
+ var match;
+ var pl = /\+/g;
+ var search = /([^&=]+)=?([^&]*)/g;
+ var decode = function (s) { return decodeURIComponent(s.replace(pl, ' ')); };
+ if (queryString === undefined) {
+ queryString = '';
+ }
+ queryString = queryString.substring(1);
+ var urlParams = {};
+ while (match = search.exec(queryString)) {
+ urlParams[decode(match[1])] = decode(match[2]);
+ }
+ return urlParams;
+ }
+
+ function arraysIntersect(a, b) {
+ for (var _i = 0, a_1 = a; _i < a_1.length; _i++) {
+ var itemA = a_1[_i];
+ for (var _a = 0, b_1 = b; _a < b_1.length; _a++) {
+ var itemB = b_1[_a];
+ if (itemA === itemB) {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
+
+ function notifyContentUpdated() {
+ // Dispatch this event when needed
+ // window.dispatchEvent(new CustomEvent('content-update'));
+ }
+ }
+
+ function utility() {
+ this.getAbsolutePath = getAbsolutePath;
+ this.isRelativePath = isRelativePath;
+ this.isAbsolutePath = isAbsolutePath;
+ this.getCurrentWindowAbsolutePath = getCurrentWindowAbsolutePath;
+ this.getDirectory = getDirectory;
+ this.formList = formList;
+
+ function getAbsolutePath(href) {
+ if (isAbsolutePath(href)) return href;
+ var currentAbsPath = getCurrentWindowAbsolutePath();
+ var stack = currentAbsPath.split("/");
+ stack.pop();
+ var parts = href.split("/");
+ for (var i=0; i< parts.length; i++) {
+ if (parts[i] == ".") continue;
+ if (parts[i] == ".." && stack.length > 0)
+ stack.pop();
+ else
+ stack.push(parts[i]);
+ }
+ var p = stack.join("/");
+ return p;
+ }
+
+ function isRelativePath(href) {
+ if (href === undefined || href === '' || href[0] === '/') {
+ return false;
+ }
+ return !isAbsolutePath(href);
+ }
+
+ function isAbsolutePath(href) {
+ return (/^(?:[a-z]+:)?\/\//i).test(href);
+ }
+
+ function getCurrentWindowAbsolutePath() {
+ return window.location.origin + window.location.pathname;
+ }
+ function getDirectory(href) {
+ if (!href) return '';
+ var index = href.lastIndexOf('/');
+ if (index == -1) return '';
+ if (index > -1) {
+ return href.substr(0, index);
+ }
+ }
+
+ function formList(item, classes) {
+ var level = 1;
+ var model = {
+ items: item
+ };
+ var cls = [].concat(classes).join(" ");
+ return getList(model, cls);
+
+ function getList(model, cls) {
+ if (!model || !model.items) return null;
+ var l = model.items.length;
+ if (l === 0) return null;
+ var html = '
';
+ level++;
+ for (var i = 0; i < l; i++) {
+ var item = model.items[i];
+ var href = item.href;
+ var name = item.name;
+ if (!name) continue;
+ html += href ? '- ' + name + '' : '
- ' + name;
+ html += getList(item, cls) || '';
+ html += '
';
+ }
+ html += '
';
+ return html;
+ }
+ }
+
+ /**
+ * Add
into long word.
+ * @param {String} text - The word to break. It should be in plain text without HTML tags.
+ */
+ function breakPlainText(text) {
+ if (!text) return text;
+ return text.replace(/([a-z])([A-Z])|(\.)(\w)/g, '$1$3$2$4')
+ }
+
+ /**
+ * Add into long word. The jQuery element should contain no html tags.
+ * If the jQuery element contains tags, this function will not change the element.
+ */
+ $.fn.breakWord = function () {
+ if (!this.html().match(/(<\w*)((\s\/>)|(.*<\/\w*>))/g)) {
+ this.html(function (index, text) {
+ return breakPlainText(text);
+ })
+ }
+ return this;
+ }
+ }
+
+ // adjusted from https://stackoverflow.com/a/13067009/1523776
+ function workAroundFixedHeaderForAnchors() {
+ var HISTORY_SUPPORT = !!(history && history.pushState);
+ var ANCHOR_REGEX = /^#[^ ]+$/;
+
+ function getFixedOffset() {
+ return $('header').first().height();
+ }
+
+ /**
+ * If the provided href is an anchor which resolves to an element on the
+ * page, scroll to it.
+ * @param {String} href
+ * @return {Boolean} - Was the href an anchor.
+ */
+ function scrollIfAnchor(href, pushToHistory) {
+ var match, rect, anchorOffset;
+
+ if (!ANCHOR_REGEX.test(href)) {
+ return false;
+ }
+
+ match = document.getElementById(href.slice(1));
+
+ if (match) {
+ rect = match.getBoundingClientRect();
+ anchorOffset = window.pageYOffset + rect.top - getFixedOffset();
+ window.scrollTo(window.pageXOffset, anchorOffset);
+
+ // Add the state to history as-per normal anchor links
+ if (HISTORY_SUPPORT && pushToHistory) {
+ history.pushState({}, document.title, location.pathname + href);
+ }
+ }
+
+ return !!match;
+ }
+
+ /**
+ * Attempt to scroll to the current location's hash.
+ */
+ function scrollToCurrent() {
+ scrollIfAnchor(window.location.hash);
+ }
+
+ /**
+ * If the click event's target was an anchor, fix the scroll position.
+ */
+ function delegateAnchors(e) {
+ var elem = e.target;
+
+ if (scrollIfAnchor(elem.getAttribute('href'), true)) {
+ e.preventDefault();
+ }
+ }
+
+ $(window).on('hashchange', scrollToCurrent);
+
+ $(window).on('load', function () {
+ // scroll to the anchor if present, offset by the header
+ scrollToCurrent();
+ });
+
+ $(document).ready(function () {
+ // Exclude tabbed content case
+ $('a:not([data-tab])').click(function (e) { delegateAnchors(e); });
+ });
+ }
+});
diff --git a/docs/styles/main.js b/docs/styles/main.js
index aeca70d..b716efe 100644
--- a/docs/styles/main.js
+++ b/docs/styles/main.js
@@ -1 +1 @@
-// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
diff --git a/docs/toc.html b/docs/toc.html
index e77dcce..eb4dfd6 100644
--- a/docs/toc.html
+++ b/docs/toc.html
@@ -1,25 +1,25 @@
-
-
-
+
+
\ No newline at end of file
diff --git a/docs/xrefmap.yml b/docs/xrefmap.yml
index 8210b37..433aa99 100644
--- a/docs/xrefmap.yml
+++ b/docs/xrefmap.yml
@@ -1,15 +1,221 @@
-### YamlMime:XRefMap
-sorted: true
-references:
-- uid: Discord
- name: Discord
- href: api/Discord.html
- commentId: N:Discord
- fullName: Discord
- nameWithType: Discord
-- uid: Discord.Class1
- name: Class1
- href: api/Discord.Class1.html
- commentId: T:Discord.Class1
- fullName: Discord.Class1
- nameWithType: Class1
+### YamlMime:XRefMap
+sorted: true
+references:
+- uid: Discord.Attribute
+ name: Discord.Attribute
+ href: api/Discord.Attribute.html
+ commentId: N:Discord.Attribute
+ fullName: Discord.Attribute
+ nameWithType: Discord.Attribute
+- uid: Discord.Attribute.EventControllerAttribute`1
+ name: EventControllerAttribute
+ href: api/Discord.Attribute.EventControllerAttribute-1.html
+ commentId: T:Discord.Attribute.EventControllerAttribute`1
+ name.vb: EventControllerAttribute(Of T)
+ fullName: Discord.Attribute.EventControllerAttribute
+ fullName.vb: Discord.Attribute.EventControllerAttribute(Of T)
+ nameWithType: EventControllerAttribute
+ nameWithType.vb: EventControllerAttribute(Of T)
+- uid: Discord.Attribute.EventControllerAttribute`1.#ctor(`0)
+ name: EventControllerAttribute(T)
+ href: api/Discord.Attribute.EventControllerAttribute-1.html#Discord_Attribute_EventControllerAttribute_1__ctor__0_
+ commentId: M:Discord.Attribute.EventControllerAttribute`1.#ctor(`0)
+ name.vb: New(T)
+ fullName: Discord.Attribute.EventControllerAttribute.EventControllerAttribute(T)
+ fullName.vb: Discord.Attribute.EventControllerAttribute(Of T).New(T)
+ nameWithType: EventControllerAttribute.EventControllerAttribute(T)
+ nameWithType.vb: EventControllerAttribute(Of T).New(T)
+- uid: Discord.Attribute.EventControllerAttribute`1.#ctor*
+ name: EventControllerAttribute
+ href: api/Discord.Attribute.EventControllerAttribute-1.html#Discord_Attribute_EventControllerAttribute_1__ctor_
+ commentId: Overload:Discord.Attribute.EventControllerAttribute`1.#ctor
+ isSpec: "True"
+ name.vb: New
+ fullName: Discord.Attribute.EventControllerAttribute.EventControllerAttribute
+ fullName.vb: Discord.Attribute.EventControllerAttribute(Of T).New
+ nameWithType: EventControllerAttribute.EventControllerAttribute
+ nameWithType.vb: EventControllerAttribute(Of T).New
+- uid: Discord.Attribute.EventControllerAttribute`1.Event
+ name: Event
+ href: api/Discord.Attribute.EventControllerAttribute-1.html#Discord_Attribute_EventControllerAttribute_1_Event
+ commentId: P:Discord.Attribute.EventControllerAttribute`1.Event
+ fullName: Discord.Attribute.EventControllerAttribute.Event
+ fullName.vb: Discord.Attribute.EventControllerAttribute(Of T).Event
+ nameWithType: EventControllerAttribute.Event
+ nameWithType.vb: EventControllerAttribute(Of T).Event
+- uid: Discord.Attribute.EventControllerAttribute`1.Event*
+ name: Event
+ href: api/Discord.Attribute.EventControllerAttribute-1.html#Discord_Attribute_EventControllerAttribute_1_Event_
+ commentId: Overload:Discord.Attribute.EventControllerAttribute`1.Event
+ isSpec: "True"
+ fullName: Discord.Attribute.EventControllerAttribute.Event
+ fullName.vb: Discord.Attribute.EventControllerAttribute(Of T).Event
+ nameWithType: EventControllerAttribute.Event
+ nameWithType.vb: EventControllerAttribute(Of T).Event
+- uid: Discord.Controller
+ name: Discord.Controller
+ href: api/Discord.Controller.html
+ commentId: N:Discord.Controller
+ fullName: Discord.Controller
+ nameWithType: Discord.Controller
+- uid: Discord.Controller.EventController
+ name: EventController
+ href: api/Discord.Controller.EventController.html
+ commentId: T:Discord.Controller.EventController
+ fullName: Discord.Controller.EventController
+ nameWithType: EventController
+- uid: Discord.Controller.EventController.ExecuteController*
+ name: ExecuteController
+ href: api/Discord.Controller.EventController.html#Discord_Controller_EventController_ExecuteController_
+ commentId: Overload:Discord.Controller.EventController.ExecuteController
+ isSpec: "True"
+ fullName: Discord.Controller.EventController.ExecuteController
+ nameWithType: EventController.ExecuteController
+- uid: Discord.Controller.EventController.ExecuteController``1(System.String[],System.String,System.Object)
+ name: ExecuteController(string[], string, object)
+ href: api/Discord.Controller.EventController.html#Discord_Controller_EventController_ExecuteController__1_System_String___System_String_System_Object_
+ commentId: M:Discord.Controller.EventController.ExecuteController``1(System.String[],System.String,System.Object)
+ name.vb: ExecuteController(Of T)(String(), String, Object)
+ fullName: Discord.Controller.EventController.ExecuteController(string[], string, object)
+ fullName.vb: Discord.Controller.EventController.ExecuteController(Of T)(String(), String, Object)
+ nameWithType: EventController.ExecuteController(string[], string, object)
+ nameWithType.vb: EventController.ExecuteController(Of T)(String(), String, Object)
+- uid: Discord.Controller.EventController.InvokeEventControllerClass*
+ name: InvokeEventControllerClass
+ href: api/Discord.Controller.EventController.html#Discord_Controller_EventController_InvokeEventControllerClass_
+ commentId: Overload:Discord.Controller.EventController.InvokeEventControllerClass
+ isSpec: "True"
+ fullName: Discord.Controller.EventController.InvokeEventControllerClass
+ nameWithType: EventController.InvokeEventControllerClass
+- uid: Discord.Controller.EventController.InvokeEventControllerClass``2(System.String,System.Object)
+ name: InvokeEventControllerClass(string, object)
+ href: api/Discord.Controller.EventController.html#Discord_Controller_EventController_InvokeEventControllerClass__2_System_String_System_Object_
+ commentId: M:Discord.Controller.EventController.InvokeEventControllerClass``2(System.String,System.Object)
+ name.vb: InvokeEventControllerClass(Of CLASS, ENUM)(String, Object)
+ fullName: Discord.Controller.EventController.InvokeEventControllerClass(string, object)
+ fullName.vb: Discord.Controller.EventController.InvokeEventControllerClass(Of CLASS, ENUM)(String, Object)
+ nameWithType: EventController.InvokeEventControllerClass(string, object)
+ nameWithType.vb: EventController.InvokeEventControllerClass(Of CLASS, ENUM)(String, Object)
+- uid: Discord.Converter
+ name: Discord.Converter
+ href: api/Discord.Converter.html
+ commentId: N:Discord.Converter
+ fullName: Discord.Converter
+ nameWithType: Discord.Converter
+- uid: Discord.Converter.InteractionFormatter
+ name: InteractionFormatter
+ href: api/Discord.Converter.InteractionFormatter.html
+ commentId: T:Discord.Converter.InteractionFormatter
+ fullName: Discord.Converter.InteractionFormatter
+ nameWithType: InteractionFormatter
+- uid: Discord.Converter.InteractionFormatter.GetEnumFromId*
+ name: GetEnumFromId
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetEnumFromId_
+ commentId: Overload:Discord.Converter.InteractionFormatter.GetEnumFromId
+ isSpec: "True"
+ fullName: Discord.Converter.InteractionFormatter.GetEnumFromId
+ nameWithType: InteractionFormatter.GetEnumFromId
+- uid: Discord.Converter.InteractionFormatter.GetEnumFromId``1(System.String)
+ name: GetEnumFromId(string)
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetEnumFromId__1_System_String_
+ commentId: M:Discord.Converter.InteractionFormatter.GetEnumFromId``1(System.String)
+ name.vb: GetEnumFromId(Of T)(String)
+ fullName: Discord.Converter.InteractionFormatter.GetEnumFromId(string)
+ fullName.vb: Discord.Converter.InteractionFormatter.GetEnumFromId(Of T)(String)
+ nameWithType: InteractionFormatter.GetEnumFromId(string)
+ nameWithType.vb: InteractionFormatter.GetEnumFromId(Of T)(String)
+- uid: Discord.Converter.InteractionFormatter.GetFirstEnumFromId*
+ name: GetFirstEnumFromId
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetFirstEnumFromId_
+ commentId: Overload:Discord.Converter.InteractionFormatter.GetFirstEnumFromId
+ isSpec: "True"
+ fullName: Discord.Converter.InteractionFormatter.GetFirstEnumFromId
+ nameWithType: InteractionFormatter.GetFirstEnumFromId
+- uid: Discord.Converter.InteractionFormatter.GetFirstEnumFromId``1(System.String[]@)
+ name: GetFirstEnumFromId(ref string[])
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetFirstEnumFromId__1_System_String____
+ commentId: M:Discord.Converter.InteractionFormatter.GetFirstEnumFromId``1(System.String[]@)
+ name.vb: GetFirstEnumFromId(Of T)(String())
+ fullName: Discord.Converter.InteractionFormatter.GetFirstEnumFromId(ref string[])
+ fullName.vb: Discord.Converter.InteractionFormatter.GetFirstEnumFromId(Of T)(String())
+ nameWithType: InteractionFormatter.GetFirstEnumFromId(ref string[])
+ nameWithType.vb: InteractionFormatter.GetFirstEnumFromId(Of T)(String())
+- uid: Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove*
+ name: GetFirstEnumFromIdAndRemove
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetFirstEnumFromIdAndRemove_
+ commentId: Overload:Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove
+ isSpec: "True"
+ fullName: Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove
+ nameWithType: InteractionFormatter.GetFirstEnumFromIdAndRemove
+- uid: Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove``1(System.String[]@)
+ name: GetFirstEnumFromIdAndRemove(ref string[])
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_GetFirstEnumFromIdAndRemove__1_System_String____
+ commentId: M:Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove``1(System.String[]@)
+ name.vb: GetFirstEnumFromIdAndRemove(Of T)(String())
+ fullName: Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove(ref string[])
+ fullName.vb: Discord.Converter.InteractionFormatter.GetFirstEnumFromIdAndRemove(Of T)(String())
+ nameWithType: InteractionFormatter.GetFirstEnumFromIdAndRemove(ref string[])
+ nameWithType.vb: InteractionFormatter.GetFirstEnumFromIdAndRemove(Of T)(String())
+- uid: Discord.Converter.InteractionFormatter.TransformEnumsToId(System.Enum[])
+ name: TransformEnumsToId(params Enum[])
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_TransformEnumsToId_System_Enum___
+ commentId: M:Discord.Converter.InteractionFormatter.TransformEnumsToId(System.Enum[])
+ name.vb: TransformEnumsToId(ParamArray Enum())
+ fullName: Discord.Converter.InteractionFormatter.TransformEnumsToId(params System.Enum[])
+ fullName.vb: Discord.Converter.InteractionFormatter.TransformEnumsToId(ParamArray System.Enum())
+ nameWithType: InteractionFormatter.TransformEnumsToId(params Enum[])
+ nameWithType.vb: InteractionFormatter.TransformEnumsToId(ParamArray Enum())
+- uid: Discord.Converter.InteractionFormatter.TransformEnumsToId*
+ name: TransformEnumsToId
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_TransformEnumsToId_
+ commentId: Overload:Discord.Converter.InteractionFormatter.TransformEnumsToId
+ isSpec: "True"
+ fullName: Discord.Converter.InteractionFormatter.TransformEnumsToId
+ nameWithType: InteractionFormatter.TransformEnumsToId
+- uid: Discord.Converter.InteractionFormatter.TransformIdToEnums(System.String,System.Type[])
+ name: TransformIdToEnums(string, params Type[])
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_TransformIdToEnums_System_String_System_Type___
+ commentId: M:Discord.Converter.InteractionFormatter.TransformIdToEnums(System.String,System.Type[])
+ name.vb: TransformIdToEnums(String, ParamArray Type())
+ fullName: Discord.Converter.InteractionFormatter.TransformIdToEnums(string, params System.Type[])
+ fullName.vb: Discord.Converter.InteractionFormatter.TransformIdToEnums(String, ParamArray System.Type())
+ nameWithType: InteractionFormatter.TransformIdToEnums(string, params Type[])
+ nameWithType.vb: InteractionFormatter.TransformIdToEnums(String, ParamArray Type())
+- uid: Discord.Converter.InteractionFormatter.TransformIdToEnums*
+ name: TransformIdToEnums
+ href: api/Discord.Converter.InteractionFormatter.html#Discord_Converter_InteractionFormatter_TransformIdToEnums_
+ commentId: Overload:Discord.Converter.InteractionFormatter.TransformIdToEnums
+ isSpec: "True"
+ fullName: Discord.Converter.InteractionFormatter.TransformIdToEnums
+ nameWithType: InteractionFormatter.TransformIdToEnums
+- uid: Discord.Exception
+ name: Discord.Exception
+ href: api/Discord.Exception.html
+ commentId: N:Discord.Exception
+ fullName: Discord.Exception
+ nameWithType: Discord.Exception
+- uid: Discord.Exception.MismatchedEnumLengthsException
+ name: MismatchedEnumLengthsException
+ href: api/Discord.Exception.MismatchedEnumLengthsException.html
+ commentId: T:Discord.Exception.MismatchedEnumLengthsException
+ fullName: Discord.Exception.MismatchedEnumLengthsException
+ nameWithType: MismatchedEnumLengthsException
+- uid: Discord.Exception.MismatchedEnumLengthsException.#ctor
+ name: MismatchedEnumLengthsException()
+ href: api/Discord.Exception.MismatchedEnumLengthsException.html#Discord_Exception_MismatchedEnumLengthsException__ctor
+ commentId: M:Discord.Exception.MismatchedEnumLengthsException.#ctor
+ name.vb: New()
+ fullName: Discord.Exception.MismatchedEnumLengthsException.MismatchedEnumLengthsException()
+ fullName.vb: Discord.Exception.MismatchedEnumLengthsException.New()
+ nameWithType: MismatchedEnumLengthsException.MismatchedEnumLengthsException()
+ nameWithType.vb: MismatchedEnumLengthsException.New()
+- uid: Discord.Exception.MismatchedEnumLengthsException.#ctor*
+ name: MismatchedEnumLengthsException
+ href: api/Discord.Exception.MismatchedEnumLengthsException.html#Discord_Exception_MismatchedEnumLengthsException__ctor_
+ commentId: Overload:Discord.Exception.MismatchedEnumLengthsException.#ctor
+ isSpec: "True"
+ name.vb: New
+ fullName: Discord.Exception.MismatchedEnumLengthsException.MismatchedEnumLengthsException
+ fullName.vb: Discord.Exception.MismatchedEnumLengthsException.New
+ nameWithType: MismatchedEnumLengthsException.MismatchedEnumLengthsException
+ nameWithType.vb: MismatchedEnumLengthsException.New