Microsoft Docs - 最新記事
docs.microsoft.com は、Microsoft 技術文書の新しいホームとして、コンテンツの Web エクスペリエンスだけでなく、ソリューションを学習、管理、デプロイするために使用するコンテンツを作成およびサポートする方法も新しくしました。 ここには、マイクロソフトのテクノロジに関連するすべてのものが統合されています。docs.microsoft.com 上の新着情報とエキサイティングな情報を常に取り入れられるようにするために、専用のフィードを作成しました。
Selected Feed: .Net
Upload de ficheros a una carpeta en Sharepoint - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178822/upload-de-ficheros-a-una-carpeta-en-sharepoint Buenas tardes Estoy intentando hacer upload de ficheros en una carpeta de SharePoint utilizando HttpClient(), el token que uso es valido ya que me funciona descargando ficheros, el código es el siguiente: Dim HClientSubida = New System.Net.Http.HttpClient() URL = "https://graph.microsoft.com/v1.0/groups/032b56h................ HClientSubida.DefaultRequestHeaders.Authorization = New System.Net.Http.Headers.AuthenticationHeaderValue(Token) HClientSubida.DefaultRequestHeaders.Accept.Add(New MediaTypeWithQualityHeaderValue("application/json")) HClientSubida.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "application/json; charset=utf-8") dim strNombre="C:\prueba.pdf" dim NombreArchivo="prueba.pdf" dim CC as stream CC=file.OpenRead Dim conten = New MultipartFormDataContent() conten.Headers.ContentType.MediaType = "application/json" conten.Add(New System.Net.Http.StreamContent(CC), "Prueba", NombreArchivo) Dim body1 As Object body1 = JsonConvert.SerializeObject(conten) Dim probando As HttpContent probando = New StringContent(JsonConvert.SerializeObject(body1), UTF8Encoding.UTF8, "application/json") Dim response4 = New HttpResponseMessage response4 = Await HClientSubida.PostAsync(URL, probando) Obtengo respuesta 400 y no se por donde tirar, agradezco enormemente cualquier ayuda . Gracias StatusCode: 400, ReasonPhrase: 'Bad Request', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:Published Date : 2023年2月8日
WkHtmlToPdf on V4 .net 6 stopped working - Permission denied - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178810/wkhtmltopdf-on-v4-net-6-stopped-working-permission We have a queue trigger that fires when a message enters the queue, on .net 3.1 v3 we had no issues and PDF assets would get created from HTML and stored in blob storage for future use. But since we have updated to .net 6 v4 Linux based our PDF from HTML conversion is failing. The error we get is: Exception while executing function: QueueBaseTrigger An error occurred trying to start process '/tmp/OpenHtmlToPdf/1.12.0.0_64/OpenHtmlToPdf.WkHtmlToPdf.exe' with working directory '/'. Permission denied Any thoughts on what we need to do to fix this? Anyone having the same issue? Example code where html is the content to be converted:Published Date : 2023年2月8日
Connect to linux remote server - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178809/connect-to-linux-remote-server Hello , I wanna connect to Linux remote server that has python files on it .. what I wanna do is to run python command inside my local code after I connect to the remote server ... i have several question in order to do so : 1- Does the remote server need to have c# and .net ? 2- I have done same as what is written insider the document (https://learn.microsoft.com/en-us/cpp/linux/connect-to-your-remote-linux-computer?view=msvc-170) but i get an error that after the connection to the server it disconnected as below code .. so what can i do ?Published Date : 2023年2月8日
Will there be any challenges when a project is migrated from visual studio Enterprise 2019 to visual studio Professional 2022? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178799/will-there-be-any-challenges-when-a-project-is-mig Hi Team, I am working on a .NET project currently. I am considering migrating from Visual Studio Enterprise 2019 to Visual Studio Professional 2022. Can you provide information on any potential challenges or limitations that I may face during this migration process? Regards, JerinPublished Date : 2023年2月8日
Duvidas sobre licença do VB.NET - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178787/duvidas-sobre-licen-a-do-vb-net Bom dia. Trabalho numa empresa com VB6 licenciado. Temos alguns sistemas antigos em VB6. Meu chefe pediu pra eu pesquisar sobre como é a licença do VB.NET para estudar uma possivel migração. Ouvi dizer que a plataforma .NET é opensource e gratuita. Como funciona ? para a empresa migrar os projetos de VB6 pra VB.NET é necessario uma licença ou tambem é gratuito? quanto custa uma licença so pra eu ter uma ideia (so pra eu passar para o chefe) ?Published Date : 2023年2月8日
Access sharepoint document in c# application - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1109948/access-sharepoint-document-in-c-application Hello, I would like to access a online public's sharepoint's excel's document, inside a dotnet c# win application. So far, by providing my sharepoint's user's credentials, it worked perfectly. However, I would like to access the document with no credentials to provide. For this, I created a direct public link to the document in our Sharepoint, following the provided tuto to do it correctly. When i copy-paste the link in a browser (while beeing NOT connected to any sharepoint's profile), it works wonder. However, when i try to access the same provided link in my c# code, I do encounter a 403 error. Can't really figure it out why. Could you provide me some informations ? Best regards, PierrePublished Date : 2023年2月8日
How many app registration should I create for an app? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168458/how-many-app-registration-should-i-create-for-an-a I looking for best practices guidance, let's suppose an app with .net core frontend and backend and a Azure SQL and 3 environments (DEV, ACC, PROD). is this recommended ? My company policy is to have 2 subscriptions, 1 for PROD and 1 for Dev/Acc, I cannot change that, but the rest is free.Published Date : 2023年2月8日
is vb.net died? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178773/is-vb-net-died hello, I'm a vb.net developer, I wanted to know if visual basic is dead or still has support. if it still has support is there a trick to use it with .net maui like you did with xamarin?Published Date : 2023年2月8日
Maui stuck in release building when Microsoft Graph is added - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178748/maui-stuck-in-release-building-when-microsoft-grap Hi Am having issues trying to build a release of my Maui app when adding Microsoft.Graph I have tried different computers, different versions of Graph and even a clean template but with the same result. The only kind of logging I can give is shown in this img below, after that nothing happens. The issue can be reproduced in a clean Maui app template if you add the Microsoft.Graph NuGet. The Maui app am building uses .Net 6 but the same issue exist in .Net 7 tooPublished Date : 2023年2月8日
How to fix session getting null when multiple user request at same time in .net 6.0 - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178715/how-to-fix-session-getting-null-when-multiple-user Any solution for "Session getting null when multiple user visit the site" Error? I analyze the iis worker process physical memory not exceed more than 3GB?Published Date : 2023年2月8日
Help with Smart App Control issues regarding .NET Runtime Optimization Service and Windows Subsystem for Linux (WSL) - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168086/help-with-smart-app-control-issues-regarding-net-r I am having problems with the new Smart App Control feature in Windows 11 Home (windows build 22621). After activating some Windows Features, Smart App started popping up with warnings that the .NET Runtime Optimization Service has been blocked and has stopped it from loading. Also DLLs that I think are signed by Microsoft (mscorlib.dll, System.dll, System.Net.dll, etc) are all getting blocked and keeps giving these annoying notifications until I switched it off. It is also blocking WSL, an app that is offered by Microsoft in their app store is being blocked. Also, other Linux Distro apps are being blocked. How do I configure Smart App Control to run .NET Runtime Optimization Service and WSL properly?Published Date : 2023年2月8日
How to stop DataGridView Combobox selection from disappearing - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178718/how-to-stop-datagridview-combobox-selection-from-d Hi, I have a WinForm project in .Net Framework 4.7.2 I have a class "EntryModel" that is bound to a Bindingsource "bs4". I have a datagridview (dgvEntries) with 5 text box columns + 1 combobox column dgvEntries.Datasource = bs5 the 5 textbox columns have their DataPropertyName from the EntryModel properties. The Comboboxcolumn (tcode) has values assigned as follows - tcode.Items.AddRange("AAA", "BBB", "CCC"); The combobox SelectedIndex value is use the change the Rate property of the EntryModel item. This all works fine and the EntryModel properties are updated correctly. The problem is that the combobox selection disappears immediately after it is selected. I have traced the SelectedIndex value (for the combobox) through the above code and it is fine up until the last closing } of Combo_SelectedIndexChanged. At that point it reverts to -1. Any help to prevent this value from disappearing is appreciated. JohnPublished Date : 2023年2月8日
How to fix the session null issue - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178695/how-to-fix-the-session-null-issue I have published the .net 6.0 site on windows iis, As per my analysis when iis worker process reach at 3 GB then it release the memory at that time it clear the current user session.Published Date : 2023年2月8日
Azure DevOps ロードマップ
https://learn.microsoft.com/ja-jp/azure/devops/release-notes/features-timeline Azure DevOps 機能のロードマップPublished Date : 2023年2月8日
有料イベントの登録を完了する (Dynamics 365 Marketing 開発者ガイド)
https://learn.microsoft.com/ja-jp/dynamics365/marketing/developer/finalizing-registrations-for-paid-events 有料イベントの登録を完了する方法について説明します。Published Date : 2023年2月8日
フュージョン 開発 ebook: 前提条件とセットアップ - Power Apps
https://learn.microsoft.com/ja-jp/power-apps/guidance/fusion-dev-ebook/prereqs-setup フュージョン 開発の前提条件と設定。Published Date : 2023年2月8日
第 5 章: Azure での Web API の作成と公開 - Power Apps
https://learn.microsoft.com/ja-jp/power-apps/guidance/fusion-dev-ebook/05-creating-publishing-web-api-in-azure Azure での Web API の作成と公開について説明します。Published Date : 2023年2月8日
Install Azure PowerShell with an MSI
https://learn.microsoft.com/ja-jp/powershell/azure/install-az-ps-msi How to install Azure PowerShell without PowerShellGet using an MSIPublished Date : 2023年2月8日
What is Azure PowerShell
https://learn.microsoft.com/ja-jp/powershell/azure/what-is-azure-powershell This article is an introduction to Azure PowerShell and its features.Published Date : 2023年2月8日
Migrate Azure PowerShell scripts from AzureRM to Az
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-from-azurerm-to-az Learn the steps and tools for migrating Azure PowerShell scripts from AzureRM to the new Az PowerShell module.Published Date : 2023年2月8日
All changes from AzureRM to Azure PowerShell Az 1.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-1.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 1 release.Published Date : 2023年2月8日
Introducing the Azure Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/new-azureps-module-az Introducing the Az PowerShell module, recommended for interacting with Azure, and the replacement for the AzureRM PowerShell module.Published Date : 2023年2月8日
Azure PowerShell release notes
https://learn.microsoft.com/ja-jp/powershell/azure/release-notes-azureps Learn about all of the latest updates to the Azure PowerShell modules.Published Date : 2023年2月8日
Azure PowerShell support lifecycle
https://learn.microsoft.com/ja-jp/powershell/azure/azureps-support-lifecycle Details about the support lifecycle of the Azure PowerShell modulesPublished Date : 2023年2月8日
Migration guide for Az 2.0.0
https://learn.microsoft.com/ja-jp/powershell/azure/migrate-az-2.0.0 This migration guide contains a list of breaking changes made to Azure PowerShell in the Az version 2.0 release.Published Date : 2023年2月8日
Install the Azure Az PowerShell module
https://learn.microsoft.com/ja-jp/powershell/azure/install-az-ps How to install the Azure Az PowerShell module from the PowerShell GalleryPublished Date : 2023年2月8日
Unable to resolve service for type in .NET 5 with entity framework scaffolding - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168544/unable-to-resolve-service-for-type-in-net-5-with-e Hi I am trying to do a website using .NET 5 with some entity framework 3.1.21. I get this error on my Comments/index page I read an article on the Microsoft docs I'm pretty sure about this error but I can't find it now. can anyone point me in the right direction? thanks in advance,Published Date : 2023年2月8日
Teradata connection type for Power BI paginated reports - Power BI
https://learn.microsoft.com/en-us/power-bi/paginated-reports/report-builder/teradata-connection-type-report-builder Use the information in this article about the Teradata connection type to learn how to build a Power BI paginated report using this data source.Published Date : 2023年2月8日
Azure Monitor ログリファレンス - SignalRServiceDiagnosticLogs
https://learn.microsoft.com/ja-jp/azure/azure-monitor/reference/tables/signalrservicediagnosticlogs Azure Monitor ログの SignalRServiceDiagnosticLogs テーブルのリファレンス。Published Date : 2023年2月8日
Exchange Online PowerShell V2 モジュールと V3 モジュールについて
https://learn.microsoft.com/ja-jp/powershell/exchange/exchange-online-powershell-v2 管理者は、Microsoft 365 のすべての Exchange 関連 PowerShell 環境への接続に使用する、Exchange Online PowerShell V2 モジュールと V3 モジュールのインストール、メンテナンス、および設計について学習できます。Published Date : 2023年2月7日
情報保護のためにデバイス プロキシとインターネット接続の設定を構成する - Microsoft Purview (compliance)
https://learn.microsoft.com/ja-jp/microsoft-365/compliance/device-onboarding-configure-proxy 情報保護のためにデバイス プロキシとインターネット接続の設定を構成するPublished Date : 2023年2月7日
チュートリアル: 共有コード ライブラリを使用して VSTO アドインと Office アドインの間でコードを共有する - Office Add-ins
https://learn.microsoft.com/ja-jp/office/dev/add-ins/tutorials/migrate-vsto-to-office-add-in-shared-code-library-tutorial VSTO アドインと Office アドインの間でコードを共有する方法に関するチュートリアル。Published Date : 2023年2月7日
VSTO add-in developer's guide to Office Web Add-ins - Office Add-ins
https://learn.microsoft.com/ja-jp/office/dev/add-ins/overview/learning-path-transition 熟練した VSTO アドイン開発者に向けた Office Web アドイン学習リソースへの推奨パス。Published Date : 2023年2月7日
Azure Blob Storage と .NET の作業を始める - Azure Storage
https://learn.microsoft.com/ja-jp/azure/storage/blobs/storage-blob-dotnet-get-started Azure Blob Storage で動作する .NET アプリケーションの開発を始めます。 この記事は、プロジェクトをセットアップし、Azure Blob Storage エンドポイントへのアクセスを承認するのに役立ちます。Published Date : 2023年2月7日
Azure portal を使用した Event Hubs 専用クラスターの作成 - Azure Event Hubs
https://learn.microsoft.com/ja-jp/azure/event-hubs/event-hubs-dedicated-cluster-create-portal このクイックスタートでは、Azure portal を使用して Azure Event Hubs クラスターを作成する方法について説明します。Published Date : 2023年2月7日
Azure IoT device SDK の選択肢の概要
https://learn.microsoft.com/ja-jp/azure/iot-develop/about-iot-sdks 開発上の役割とタスクに応じて、どの Azure IoT device SDK を使用すべきかについて説明します。Published Date : 2023年2月7日
Quickstart: Azure Blob Storage library - .NET
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-dotnet In this quickstart, you will learn how to use the Azure Blob Storage client library for .NET to create a container and a blob in Blob (object) storage. Next, you learn how to download the blob to your local computer, and how to list all of the blobs in a container.Published Date : 2023年2月7日
サイト間接続用の強制トンネリングを構成する - Azure VPN Gateway
https://learn.microsoft.com/ja-jp/azure/vpn-gateway/vpn-gateway-forced-tunneling-rm すべてのインターネットへのトラフィックをオンプレミスの場所に (強制的に) リダイレクトする方法について説明します。Published Date : 2023年2月7日
Visual Studio Code を使用してシングルテナント Azure Logic Apps で Standard ワークフローを作成する - Azure Logic Apps
https://learn.microsoft.com/ja-jp/azure/logic-apps/create-single-tenant-workflows-visual-studio-code シングルテナントの Azure Logic Apps で実行される Standard ロジック アプリ ワークフローを作成し、Visual Studio Code を使用してアプリ、データ、サービス、システム間の統合タスクを自動化します。Published Date : 2023年2月7日
Azure Key Vault の新機能
https://learn.microsoft.com/ja-jp/azure/key-vault/general/whats-new Azure Key Vault の最近の更新Published Date : 2023年2月7日
Azure VPN Gateway について
https://learn.microsoft.com/ja-jp/azure/vpn-gateway/vpn-gateway-about-vpngateways VPN Gateway とは何か、また VPN Gateway を使用して、サイト間、VNet 対 VNet、およびポイント対サイトの IPsec IKE VPN 仮想ネットワークに接続する方法について説明します。Published Date : 2023年2月7日
Not able to get http response from a third party API when code deployed to azure function app, in debug mode its working fine - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/918140/not-able-to-get-http-response-from-a-third-party-a I have created an azure http trigger (also tried with timer trigger) function and it is calling an third party API with necessary params as content header. Locally in VS Code (debug mode), it's working fine. I am getting desired response (getting token if we call token end point as well as proper response if we call another end point by passing token). Even with postman I am getting correct response. But when I deployed this function to azure function app, it's not getting response from both endpoint. (either from token one or if I pass hardcoded token copied from postman to second endpoint). In logs, I can see function being called and when I am logging response I am getting a large html text(don't know what is that) Is it possible that third party API is blocking or restricting calls from azure function(though it's working locally or with postman if we pass proper values) Tried everything but can' find out the exact issue. I have verified I am passing correct values as grant_type, client_Id, client_secret, username, password, scope) Have pasted below sample piece of code: private async Task<Token> GetToken() { try{ HttpContent content = new FormUrlEncodedContent(new Dictionary<string, string> { {"grant_type", Environment.GetEnvironmentVariable("test-grant-type")}, {"username", Environment.GetEnvironmentVariable("test-username")}, {"password", Environment.GetEnvironmentVariable("test-password")}, {"client_id", Environment.GetEnvironmentVariable("test-client-id")}, {"client_secret", Environment.GetEnvironmentVariable("test-client-secret")}, {"scope", Environment.GetEnvironmentVariable("test-scope")} }); return resTokenModel; } Log html response sample (it's not complete as it is very large), Log1: 2022-06-29T08:30:05.490 [Information] Log Info: GetToken method: httpResponseMsg: StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.HttpConnectionResponseContent, Headers:{Cache-Control: no-store, no-cachePragma: no-cacheStrict-Transport-Security: max-age=31536000; includeSubDomainsX-Content-Type-Options: nosniffX-Frame-Options: DENYLink: <https://aadcdn.msauth.net>; rel=preconnect; crossoriginLink: <https://aadcdn.msauth.net>; rel=dns-prefetchLink: <https://aadcdn.msftauth.net>; rel=dns-prefetchX-DNS-Prefetch-Control: onP3P: CP="DSP CUR OTPi IND OTRi ONL FIN"x-ms-request-id: 18670f19-3bec-4556-9b66-2c3760855300x-ms-ests-server: 2.1.13006.6 - WEULR1 ProdSlicesX-XSS-Protection: 0Set-Cookie: buid=0.AQIANaKxxxx_PBbRZsxxxx_PzErkPdDcCAdAA.xxxx--DLA3VO7QrddgJg7WevrDRjJU0T4KWPoylW2bC-ExpJHweIFWSInAdxjVwFITAQNF_FKbJPKHxxxxxp9ivEPYDacemz4wUo_sc04zyJbXjfz-2bVvxUz-AgAA; expires=Thu, 28-Jul-2022 08:30:05 GMT; path=/; secure; HttpOnly; SameSite=NoneSet-Cookie: fpc=AsZ-7OJNXMJAsZa7WVUJsyzxSauWAQAAAAyzTNoOAAAA; expires=Thu, 29-Jul-2022 08:30:05 GMT; path=/; secure; HttpOnly; SameSite=NoneSet-Cookie: esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvlcjjHs6JSFKoM9RHgIe1sGicQYOARxxxxwtTCtFHUZ7DawxrkQC4x3uxxkXSFkTTUgthZA1MEqk-Pmv2mzfkL9xBHg1V-LSzxeaWxtB38SA--OJKRBbdBVRR0D80RGqwGWTn5bm4XeaaWFCt5SYYet_q1fuHwxUMe7OXIuQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=NoneSet-Cookie: x-ms-gateway-slice=estsfd; path=/; secure; httponlySet-Cookie: stsservicecookie=estsfd; path=/; secure; httponlyDate: Tue, 28 Jun 2022 08:30:04 GMTContent-Type: text/html; charset=utf-8Expires: -1Content-Length: 195652} From below html, I can only understand "Sign in to your account" but where to sign, Log2: 2022-06-28T08:30:05.492 [Information] Log Info: Synergi Repo: GetToken method: apiResponse:<!-- Copyright (C) Microsoft Corporation. All rights reserved. --><!DOCTYPE html><html dir="ltr" class="" lang="en"><head><title>Sign in to your account</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Expires" content="-1"><link rel="preconnect" href="https://aadcdn.msauth.net" crossorigin><meta http-equiv="x-dns-prefetch-control" content="on"><link rel="dns-prefetch" href="//aadcdn.msauth.net"><link rel="dns-prefetch" href="//aadcdn.msftauth.net"><meta name="PageID" content="ConvergedSignIn" /><meta name="SiteID" content="" /><meta name="ReqLC" content="1033" /><meta name="LocLC" content="en-US" /><meta name="referrer" content="origin" /><meta name="format-detection" content="telephone=no" /><noscript><meta http-equiv="Refresh" content="0; URL=https://login.microsoftonline.com/jsdisabled" /></noscript><meta name="robots" content="none" /><script type="text/javascript">//<![CDATA[$Config={"fShowPersistentCookiesWarning":false,"urlMsaSignUp":"https://login.live.com/oauth20_authorize.srf?response_type=code\u0026client_id=5xxx2-085c-xxxx-bf88-xxxxx8\u0026scope=openid+profile+email+offline_access\u0026response_mode=form_post\u0026redirect_uri=https%3a%2f%2flogin.microsoftonline.com%2fcommon%2ffederation%2foauth2msa\u0026state=rQQIxxxxxxFM4lbVARUISEBAuDmwnlYp99Z8dGDEFtIWogJQGEUCQ4n-_SE845sZ2UgBj5GZkYChISYycEC3QBJIREp0wIMSPBABJbO-KUFYnlLe99f-87Wxxxxkk1A8g9i0b-pawoLCQ6buGcLDlxEf2H_549xxxxvH95ugLnroRzxCot6m-DEWpr2E0_Xk7HicVcOaIUPhlJF8XSvvwZgAsAPADbzJYdaFAufQMQtA2LmBpASIaAgriAkEAjR6tf8fLM2TNfM6YhieZtvFB7ka_3-ahzdGrdTmnLvjlZXIxrK4FJ0k6sWT-Ox5qlhGJa1enI-iYRPNU_QMOFlrRnLrlQ0bNH1y3Goedpfux2982_DHb2puAy4SmU67ugsUoqztKOnUxxxxx4PMkZs0Sp1GIaYZy_EJnGgbwgTWowz5mAfE-FmyDZPEhmpPYiDGEKE2dCx7QzCmAt9GhjQtlwR2Dwj84V2d2FJBU2xl3mVxrS38LJQsijF1LQI9G1uQlwNCHSRS6AjmDBIpuX6xnahGPW5ksGXApjMgN0Z8Hw26_H4fPfYz1NXlp6IsnPjXju3PasnA0MuXsNdtFLt9thyO0zZsoqvxiuN9bONOg4vLEbDxsUzdnVQO4089KgIfhfBw325rbn_1P7iAHh3MLd7aOfbqzf3nz7-de4P0\u0026estsfed=1\u0026uaid=71c115c676664cc9bad0639fd6e7c4bf\u0026signup=1\u0026lw=1\u0026fl=easi2\u0026fci=7e7dac8e-5abd-4b36-b3f3-f312b90f7437","urlMsaLogout":"https://login.live.com/logout.srf?iframed_by=https%3a%2f%2flogin.microsoftonline.com","urlOtherIdpForget":"https://login.live.com/forgetme.srf?iframed_by=https%3a%2f%2flogin.microsoftonline.com","showCantAccessAccountLink":true,"urlGitHubFed":"https://login.live.com/oauth20_authorize.srf?response_type=code\u0026client_id=xxx-085c-xx-bf88-xxx\u0026scope=openid+profile+email+offline_access\u0026response_mode=form_post\u0026redirect_uri=https%3a%2f%2flogin.microsoftonline.com%2fcommon%2ffederation%2foauth2msa\u0026state=rQQIAxxxVE9bNNAxxxISEBAuDmwnlYp99Z8dGDEFtIWogJQGEUCQ4n-_SE845sZ2UgBj5GZkYChISYycEC3QBJIREp0wIMSPBABJbO-KUFYnlLe99f-87WUAV5JUc7gSUVTkxxxx-pawoLCQ6buGcLDlxEf2H_549P1AjD41tibs2efvH95ugLnroRzxCot6m-DEWpr2E0_Xk7HicVcOaIUPhlJF8XSvvxxxbzJYdaFAxxxxxiAkEAjR6tf8fLM2TNfM6YhieZtvFB7ka_3-ahzdGrdTmnLvxxxrK4FJ0k6sWT-Ox5qlhGJa1enI-iYRPNU_QMOFlrRnLrlQ0bNH1y3Goedpfux2982_DHb2puAy4SmU67ugsUoqztKOnUymtrLWyW56kmRshQ14PMkZs0Sp1GIaYZy_EJnGgbwgTWowz5mAfE-FmyDZPEhmpPYiDGEKE2dCx7QzCmAt9GhjQtlwR2xxxxd2FJBU2xl3mVxrS38LJQsijF1LQI9G1uQlwNCHSRS6AjmDBIpxxxxsGXApjMxxx26_H4fPfYz1NXlp6IsnPjXju3PasnA0MuXsNdxxxvxiuN9bONOg4vLEbDxsUzdnVQO4089KgIfhfBw325rbn_1P7iAHh3MLd7aOfbqzf3nz7-de4P0\u0026estsfed=1\u0026uaid=71c115c676664cc9bad0639fd6e7c4bf\u0026fci=7e7dxxxx-b3f3-f312b90f7437\u0026idp_hint=github.com","fShowSignInWithGitHubOnlyOnCredPicker":true,"fEnableShowResendCode":true,"iShowResendCodeDelay":90000,"sSMSCtryPhoneData":"AF~Afghanistan~93!!!AX~?land Islands~358!!!AL~Albania~355!!!Islands~358!!!AL~Albania~355!!! -- and so here is large html content as above --- Exception log: This is because in code we are parsing response (so below issue is because it tried to parse response html) - so this does not seems to be useful 2022-06-29T15:18:14.657 [Error] Exception : GetToken Method: Exception: Unexpected character encountered while parsing value: '<'. Path '', line 0, position 0. 2022-06-29T15:18:14.710 [Error] Exception : Method: Exception: One or more errors occurred. (Unexpected character encountered while parsing value: '<'. Path '', line 0, position 0.) If anyone has faced similar issue or can give an idea what can be the cause, though it's hard to find just looking in to code ThanksPublished Date : 2023年2月7日
reportViewer is not linking - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1178630/reportviewer-is-not-linking Hello, I am using the Community version of VS2022 and have creates a couple of rdlc reports. When i try and drag the ReportViewer into my form the only thing I can see is an item in the area under my from that says: reportViewer1. I can't seem to find a way to connect it to my rdlc reports. My database is an MS ACCESS. I have the following NuGet packages installed: Microsoft.ReportViewer.WinForms.v12 Corrected.Microsoft.ReportingServices.ReportViewerControl.Winforms Microsoft.ReportingServices.ReportViewerControl.Winforms Bing as much as I want I cannot find what I am doing wrong. Any help is certainly appreciated.Published Date : 2023年2月7日
Interface in .NET MAUI - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1167855/interface-in-net-maui Hi, How can Implement Interface in .NET MAUI? I want to implement the below to access the App's Settings for both iOS and Android. Thanks, JassimPublished Date : 2023年2月7日
Why does Blazor server app takes away memory while being inactive? - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168462/why-does-blazor-server-app-takes-away-memory-while We developed a Blazor server app and is going through testing phase. Our clients have some concern. What we notice is that before the app is launched memory is 4784 K, one the app is launched and at the end of rendering the login page it is already over 50K. Now staying on the login page and doing nothing with the app the memory in task manager keeps climbing up. When I see the IIS log, there is no activity at all, ever since login page is loaded. Our clients see this as security risk and requesting an explanation. Could someone shed some light on this memory usage of Blazor Server App, Why the memory usage is increasing.in task manager.Published Date : 2023年2月7日
ASP.NET Core SignalR でハブを使用する
https://learn.microsoft.com/ja-jp/aspnet/core/signalr/hubs ASP.NET Core SignalR でハブを使用する方法について説明します。Published Date : 2023年2月7日
ASP.NET Core 2.1 の新機能
https://learn.microsoft.com/ja-jp/aspnet/core/release-notes/aspnetcore-2.1 ASP.NET Core 2.1 の新機能について説明します。Published Date : 2023年2月7日
[MS-WINERRATA]: .NET Remoting: Binary Format Data Structure
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-winerrata/3190071b-45d3-4476-9402-0e74f15b7c5a This topic lists the Errata found in [MS-NRBF] since it was last published. Since this topic is updated frequently, we recommend that youPublished Date : 2023年2月7日
[MC-NBFX]: Applicability Statement
https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-nbfx/56d14673-d42d-4b92-88fa-e1a745ebca46 The .NET Binary Format: XML Data Structure is a general-purpose way to represent an XML document that offers many benefits in terms of reducedPublished Date : 2023年2月7日
[MS-WINERRATA]: .NET Binary Format XML Data Structure
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-winerrata/6babfe2e-3c59-4ab0-87a2-443f75ea7e8b This topic lists the Errata found in [MC-NBFX] since it was last published. Since this topic is updated frequently, we recommend that youPublished Date : 2023年2月7日
[MS-WINERRATA]: .NET NegotiateStream Protocol
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-winerrata/1b4d9bf2-0af2-45f0-ac45-774815cf31f7 This topic lists the Errata found in [MS-NNS] since it was last published. Since this topic is updated frequently, we recommend that youPublished Date : 2023年2月7日
[MS-WINERRATA]: .NET Message Framing Protocol
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-winerrata/872541a4-9fc3-4b15-b716-def7619af7df This topic lists the Errata found in the MC-NMF document since it was last published. Since this topic is updated frequently, we recommendPublished Date : 2023年2月7日
[MS-WINERRATA]: Windows Protocols Errata
https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-winerrata/314fe022-28ea-4bd9-93ac-7941ecf9ca10 This topic lists the Errata found in the Windows Protocols Technical Specifications, Overview Documents, and Reference documents since theyPublished Date : 2023年2月7日
[MC-NBFX]: .NET Binary Format: XML Data Structure
https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-nbfx/94c66ea1-e79a-4364-af88-1fa7fef2cc33 Specifies the XML data structure for the .NET Binary Format for XML. This format can represent many XML documents, as specified in [XML1.0]. ThePublished Date : 2023年2月7日
[MC-NBFX]: Glossary
https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-nbfx/188be2dc-1b2c-4be3-8792-70876f393093 This document uses the following terms: base64 encoding: A binary-to-text encoding scheme whereby an arbitrary sequence of bytes is converted toPublished Date : 2023年2月7日
Azure Cosmos DB を操作する - Training
https://learn.microsoft.com/ja-jp/training/modules/work-with-cosmos-db/ Azure Cosmos DB を操作するPublished Date : 2023年2月7日
C# でヘルパー メソッドを使用して配列の操作を実行する - Training
https://learn.microsoft.com/ja-jp/training/modules/csharp-arrays-operations/ 強力なヘルパー メソッドを使用して、配列の内容を操作および制御します。Published Date : 2023年2月7日
Mac M1: CLI SPX Command not found - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/904655/mac-m1-cli-spx-command-not-found On my Macbook M1 (20219, MacOS 12.4) I have successfully installed dotnet-sdk-6.0.301-osx-arm64 and the Speech CLI via dotnet tool install --global Microsoft.CognitiveServices.Speech.CLI but when I type spx help I get zsh: command not found: spx How can I fix this?Published Date : 2023年2月7日
Microsoft Dataverse の Power Apps Component Framework を使用して最初のコンポーネントを作成する - Power Apps
https://learn.microsoft.com/ja-jp/power-apps/developer/component-framework/implementing-controls-using-typescript Power Apps Component Framework を使用してコード コンポーネントを実装する方法について説明しますPublished Date : 2023年2月7日
COM および .NET 用の C++ の属性
https://learn.microsoft.com/ja-jp/cpp/windows/attributes/cpp-attributes-com-net 詳細情報: C++ Attributes for COM および .NETPublished Date : 2023年2月7日
NMake プロパティ ページ (Windows C++)
https://learn.microsoft.com/ja-jp/cpp/build/reference/nmake-property-page 詳細情報: NMake プロパティ ページPublished Date : 2023年2月7日
Find memory leaks with the CRT library
https://learn.microsoft.com/en-us/cpp/c-runtime-library/find-memory-leaks-using-the-crt-library Learn how the C/C++ debugger and C Run-time Library (CRT) can help find memory leaks. The techniques include memory-leak reports and comparing memory snapshots.Published Date : 2023年2月7日
Loading System.IO.Ports.dll from dynamically loaded class library in .NET6 - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168351/loading-system-io-ports-dll-from-dynamically-loade Using .net6 or .net7, I can't make a dynamically loaded class library (read plugin) load the System.IO.Ports.dll (nuget package). I'm using VS2022, but had the same problem on .net5 and VS2019. I'm only using Windows. I have dropped some demonstration code here: https://github.com/JanJorgensen/Net5AddonLoadProblemDemo The application loads the plugin like this: Exception thrown when trying to create instance of SerialPort class is: System.PlatformNotSupportedException, "System.IO.Ports is currently only supported on Windows." In .Net Framework (2 through 4.5), it worked perfectly. Maybe because that was only for Windows. If I create a .net application (console, WinForms or WPF) and use System.IO.Ports directly from that, it works perfectly. I have tried changing the target framework for the two class libraries from 'net7.0' to 'net7.0-windows' and that didn't help. While I'm unfortunately not a .net pro, I think there's some details I don't know about building and distributing .net5-7 applications for Windows. In the output folder, a 'runtimes' folder is created when building, with the Ports assembly in versions for different target systems. So why can't the dynamically loaded class library load the System.IO.Ports.dll? In a deployed installation it doesn't work either. It seems the plugin assembly should somehow be configured to use the .net7 version of the assembly when on Windows. I have a dirty solution at the moment, where I add the library as a dependency in my top level application, just to make sure it is loaded, making the plugin work. But that's so ugly and should not be necessary. I'm stuck on this, so I really hope someone can help me. (This was also posted on stackoverflow)Published Date : 2023年2月7日
Gremlin API を使用して Azure Cosmos DB .NET Framework アプリケーションまたは .NET Core アプリケーションを構築する
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-dotnet Azure Cosmos DB への接続とデータの照会に使用できる .NET Framework/Core コード サンプルについて説明しますPublished Date : 2023年2月7日
Azure Cosmos DB の Gremlin API クエリの要求ユニット (RU) 使用量を確認する
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/find-request-unit-charge Azure Cosmos コンテナーに対して実行した Gremlin クエリの要求ユニット (RU) 使用量を確認する方法について説明します。 Azure portal、.NET、Java ドライバーを使用して、RU 使用量を確認できます。Published Date : 2023年2月7日
Azure Cosmos DB for Gremlin でバルク エグゼキューター ライブラリを使用して一括でデータを取り込む
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/bulk-executor-dotnet バルク エグゼキューター ライブラリを使って、Azure Cosmos DB for Gremlin コンテナーにグラフ データを大量にインポートする方法を説明します。Published Date : 2023年2月7日
Azure 仮想マシン エージェントの概要 - Azure Virtual Machines
https://learn.microsoft.com/ja-jp/azure/virtual-machines/extensions/agent-windows Azure 仮想マシン エージェントの概要Published Date : 2023年2月7日
Windows 用の Azure VM 拡張機能とその機能 - Azure Virtual Machines
https://learn.microsoft.com/ja-jp/azure/virtual-machines/extensions/features-windows Windows 上の Azure 仮想マシンで使用できる拡張機能について、提供または改善される内容ごとにまとめて説明します。Published Date : 2023年2月7日
Azure Synapse Runtime for Apache Spark 3.3 - Azure Synapse Analytics
https://learn.microsoft.com/ja-jp/azure/synapse-analytics/spark/apache-spark-33-runtime Apache Spark 3.3 でサポートされている Spark、Scala、Python、.NET の各バージョン。Published Date : 2023年2月7日
Azure Synapse Runtime for Apache Spark 2.4 - Azure Synapse Analytics
https://learn.microsoft.com/ja-jp/azure/synapse-analytics/spark/apache-spark-24-runtime Apache Spark 2.4 でサポートされている Spark、Scala、Python、.NET の各バージョン。Published Date : 2023年2月7日
Form Recognizer についてよく寄せられる質問 (FAQ)
https://learn.microsoft.com/ja-jp/azure/applied-ai-services/form-recognizer/faq Form Recognizer サービスに関してよく寄せられる質問です。Published Date : 2023年2月7日
Linux 用の Azure VM 拡張機能とその機能 - Azure Virtual Machines
https://learn.microsoft.com/ja-jp/azure/virtual-machines/extensions/features-linux Linux 上の Azure 仮想マシンで使用できる拡張機能について、提供または改善される内容ごとにまとめて説明します。Published Date : 2023年2月7日
クイック スタート:Gremlin API と PHP - Azure Cosmos DB
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-php このクイックスタートに従って、Azure portal 内の Azure Cosmos DB for Gremlin データベースにデータを入力する PHP コンソール アプリケーションを実行します。Published Date : 2023年2月7日
Azure Synapse Runtime for Apache Spark 3.1 - Azure Synapse Analytics
https://learn.microsoft.com/ja-jp/azure/synapse-analytics/spark/apache-spark-3-runtime Apache Spark 3.1 でサポートされている Spark、Scala、Python、.NET の各バージョン。Published Date : 2023年2月7日
Gremlin API を使用して Azure Cosmos DB Node.js アプリケーションを構築する
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-nodejs Azure Cosmos DB への接続とデータの照会に使用できる Node.js コード サンプルについて説明しますPublished Date : 2023年2月7日
TinkerPop Gremlin コンソールを使って Azure Cosmos DB for Gremlin でクエリを実行する: チュートリアル
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-console Azure Cosmos DB for Gremlin を使って頂点、辺、およびクエリを作成するための Azure Cosmos DB クイック スタート。Published Date : 2023年2月7日
クイック スタート:Python での Gremlin API の使用 - Azure Cosmos DB
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-python このクイック スタートでは、Azure portal および Python で Azure Cosmos DB for Gremlin を使ってコンソール アプリケーションを作成する方法を説明しますPublished Date : 2023年2月7日
Azure Cosmos DB で Java を使用してグラフ データベースをビルドする
https://learn.microsoft.com/ja-jp/azure/cosmos-db/gremlin/quickstart-java Gremlin を使用した Azure Cosmos DB 内のグラフ データへの接続とクエリに使用できる Java コード サンプルについて説明します。Published Date : 2023年2月7日
Windows 向けの Azure カスタム スクリプト拡張機能 - Azure Virtual Machines
https://learn.microsoft.com/ja-jp/azure/virtual-machines/extensions/custom-script-windows カスタム スクリプト拡張機能を使用して Windows VM の構成タスクを自動化します。Published Date : 2023年2月7日
Azure Virtual Desktop の最新情報 - Azure
https://learn.microsoft.com/ja-jp/azure/virtual-desktop/whats-new Azure Virtual Desktop の新機能と製品の更新情報。Published Date : 2023年2月7日
クラスターのパフォーマンス履歴 - Azure Stack HCI
https://learn.microsoft.com/ja-jp/azure-stack/hci/manage/health-service-cluster-performance-history 詳細情報: クラスターのパフォーマンス履歴Published Date : 2023年2月7日
ヘルス サービスの障害を表示する - Azure Stack HCI
https://learn.microsoft.com/ja-jp/azure-stack/hci/manage/health-service-faults 詳細情報: ヘルス サービスの障害Published Date : 2023年2月7日
Get started with WebView2 in WinForms apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/get-started/winforms WebView2 for WinForms アプリを使用するための入門ガイド。Published Date : 2023年2月7日
WinForms sample app - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/samples/webview2windowsformsbrowser この WebView2 サンプルでは、WebView2 コントロールと WebView2 API を使用して、WinForms アプリに Web ブラウザーを実装する方法を示します。Published Date : 2023年2月7日
Get started with WebView2 in WPF apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/get-started/wpf webView2 for Windows Presentation Foundation (WPF) アプリの概要ガイド。Published Date : 2023年2月7日
WiX Burn Bundle to deploy the WebView2 Runtime - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/samples/wv2deploymentwixburnbundlesample WiX バーン バンドルを使用して WebView2 ランタイムをデプロイする方法を示す WebView2 サンプル。Published Date : 2023年2月7日
WiX Custom Action to deploy the WebView2 Runtime - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/samples/wv2deploymentwixcustomactionsample WiX カスタム アクションを使用して WebView2 ランタイムをデプロイする方法を示す WebView2 サンプル。Published Date : 2023年2月7日
Develop secure WebView2 apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/concepts/security セキュリティで保護された WebView2 アプリケーションを開発する方法。Published Date : 2023年2月7日
Call native-side WinRT code from web-side code - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/how-to/winrt-from-js WebView2 アプリ用 AddHostObjectToScript API を使用して、WinRT ホスト オブジェクトを JavaScript に渡す方法。Published Date : 2023年2月7日
Get started with WebView2 in WinUI 2 (UWP) apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/get-started/winui2 WebView2 for WinUI 2 アプリの概要ガイド。Published Date : 2023年2月7日
Securely debug original code by publishing source maps to the Azure Artifacts symbol server - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/devtools-guide-chromium/javascript/publish-source-maps-to-azure DevTools で元のソース コードを安全にデバッグするために、ソース マップを Azure Artifacts シンボル サーバーに発行する方法について説明します。Published Date : 2023年2月7日
Manage user data folders - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/concepts/user-data-folder WebView2 ホスト アプリでユーザー データ フォルダーを管理する方法。Published Date : 2023年2月7日
Get started with WebView2 in WinUI 3 (Windows App SDK) apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/get-started/winui WebView2 for WinUI 3 (Windows アプリ SDK) アプリの概要ガイド。Published Date : 2023年2月7日
Get started with WebView2 in Win32 apps - Microsoft Edge Development
https://learn.microsoft.com/ja-jp/microsoft-edge/webview2/get-started/win32 サンプル アプリと WebView2 SDK を使用して、WebView2 for Win32 の構築を開始します。Published Date : 2023年2月7日
Migrate Hyper-V VM to Azure - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/1168551/migrate-hyper-v-vm-to-azure I am trying to use the Hyper-V WMI APIs to prepare a Hyper-V VM for migration to Azure. I am developing a .Net console application to do the tasks. I started prototyping from this sample code: https://learn.microsoft.com/en-us/windows/win32/hyperv_v2/exporting-virtual-machines, however the code doesn't seem to provide all the details needed to run it. There are references to a Utility class that are not included in the sample: Utility.GetServiceObject(scope, "Msvm_VirtualSystemManagementService"); The referenced C# utilities can be found in Common utilities for the virtualization samples (V2), don't have the code for this utility class. In addition; I'm not seeing the WMI Objects/Classes on my local computer. More specifically, the 'ExportSystemDefinition' method. I'm running Windows 10 Professional.Published Date : 2023年2月7日
New-AzSpringCloudAppDeploymentNetCoreZipUploadedObject (Az.SpringCloud)
https://learn.microsoft.com/ja-jp/powershell/module/az.springcloud/new-azspringcloudappdeploymentnetcorezipuploadedobject Create an in-memory object for NetCoreZipUploadedUserSourceInfo.Published Date : 2023年2月7日
Submit-AzSynapseSparkJob (Az.Synapse)
https://learn.microsoft.com/ja-jp/powershell/module/az.synapse/submit-azsynapsesparkjob The Submit-AzSynapseSparkJob cmdlet submits a Synapse Analytics Spark job.Published Date : 2023年2月7日
Install-AzAksCliTool (Az.Aks)
https://learn.microsoft.com/ja-jp/powershell/module/az.aks/install-azaksclitool Download and install kubectl and kubelogin.Published Date : 2023年2月7日
New-AzStorageQueue (Az.Storage)
https://learn.microsoft.com/ja-jp/powershell/module/az.storage/new-azstoragequeue The New-AzStorageQueue cmdlet creates a storage queue in Azure.Published Date : 2023年2月7日
New-AzStorageTable (Az.Storage)
https://learn.microsoft.com/ja-jp/powershell/module/az.storage/new-azstoragetable The New-AzStorageTable cmdlet creates a storage table associated with the storage account in Azure.Published Date : 2023年2月7日