Microsoft Docs - 최신 문서

Microsoft 기술 문서가 이전된 docs.microsoft.com에서는 콘텐츠용 웹 환경뿐 아니라 솔루션을 학습, 관리 및 배포하는 데 사용하는 콘텐츠를 만들고 지원하는 방법을 현대화했습니다. 이는 Microsoft 기술과 관련된 모든 것을 위한 원스톱 상점입니다. docs.microsoft.com에서 새롭고 흥미로운 내용을 최신 상태로 유지할 수 있도록 귀하를 위한 전용 피드를 만들었습니다.


Selected Feed: .Net

How do I clear an attribute value using "expressions for attribute mappings in Azure Active Directory" - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1191954/how-do-i-clear-an-attribute-value-using-expression I am provisioning using Inbound Provisioning for Success Factors and need to remove the value of an attribute in the on-premises Active Directory. I can flow an empty string; however, that leaves an attribute with no value. The downside is that LDAP queries for the presence of a value in the attribute will be true and anything using the attribute value will need to test for an empty attribute. As a practical matter, this may not be of consequence, but it flies in the face of a long-standing LDAP principle stated by standards editor Kurt Zeilenga: "an attribute without a value should not exist." If I was using ADSI or the .Net libraries System.DirectoryServices, or System.DirectoryService.Protocols, I have the option to clear the attribute value. Even FIM/MIM's VBA language supports flowing Null() to achieve the same result. Unfortunately, this option is not available in the published reference at https://learn.microsoft.com/en-us/azure/active-directory/app-provisioning/functions-for-customizing-application-data . If there's no way to do this now, I am requesting this capability be added.
Published Date : 2023년 3월 23일 목요일

How can I resolve a mono_wasm_set_is_debugger_attached error in published Blazor WASM app on Edge? - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192494/how-can-i-resolve-a-mono-wasm-set-is-debugger-atta In the latest version of Microsoft Edge I have an issue where a published Blazor WASM (.NET 6) application it getting errors on launch: Assertion failed: Cannot call unknown function mono_wasm_set_is_debugger_attached, make sure it is exported As far as I can tell this is Edge trying to attach the debugger, which is controlled server side in the start-up with the code: However, I'm getting this error on a production system in Azure where the App Environment is set to "LIVE" How can I resolve this error? Why is a production published version trying to attach to a debugger? (Is this an artefact of running Edge on a development machine?)
Published Date : 2023년 3월 23일 목요일

How to fix Incomprehensible error in the whole of my application? - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192518/how-to-fix-incomprehensible-error-in-the-whole-of Hi, some time ago I made a blazor wasm .net core 6 application with VS version 17.2.3 and it works fine. However I opened the code today and I find myself with "red" everywhere, see the image below. Is this a problem with the VS version? Thanks in advance!!
Published Date : 2023년 3월 23일 목요일

Windows 2019 "Could not create windows user token from the credentials specified" - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192647/windows-2019-could-not-create-windows-user-token-f I have IIS installed on a stand alone server that needs to be able access folders on another server that is domain joined. I have confirmed the domain creds used in the web.confg file can access the domain server since I can access shares via UNC path. Problem is the web site on the stand alone server is getting the error "Could not create windows user token from the credentials specified" . I made sure my web config file has the following line present and no luck. App pools are running under a local account, but will not run when I try to use a domain account. Thoughts???
Published Date : 2023년 3월 23일 목요일

Convert.ToDouble(String) does not throw an overflow exception when max_value is exceeded - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192543/convert-todouble(string)-does-not-throw-an-overflo I use .NET 8.0 on vscode. In documentation (for .NET 8.0) of Convert.ToDouble(String) there is OverFlow Exception when Double.MaxValue is exceeded, but when I convert a string that represents a value>Double.MaxValue, it doesn't throw an exception, but give me a double with particular value.
Published Date : 2023년 3월 23일 목요일

How to access file in Azure disk - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1190381/how-to-access-file-in-azure-disk Hi all In my recent project I am trying to access files using REST API (deploy in app service in same network) and it give 500 error when access the file. Path which I am trying to access is \trmfs1.termserv.xyz.com\termserv_apps_cust\pdf_directory\BPX_USREF\12345\test.pdf It is in Azure disk and It can be accessed using file explorer. My requirement is I need to access same file using a REST API (.NET core). Seeking your opining's on this Thanks Nuwan
Published Date : 2023년 3월 23일 목요일

SQL Server 2022 install on Windows 10 fails with error that .NET is not installed, but it is installed and up to date - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192625/sql-server-2022-install-on-windows-10-fails-with-e I have installed SQL Server 2022 Developer edition successfully on a Windows 10 and 11 virtual machine. The issue is that I cannot install it on a physical machine. During the install, I get the following fatal error. I have tried to install the latest .NET Framework, and my OS says it's already installed. I tried to install 4.0 .NET and the message is that it's included with my installed version. I tried to install 2.0 .NET framework, and the installer doesn't launch. The error's help link is dead. I've attached the log file.
Published Date : 2023년 3월 23일 목요일

Access Control - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192501/access-control Good morning, I am working on a .NET Core 6, SQL Server project and I need some idea of how to implement permissions by fields, let me explain: in a form, for example, that has [Name, Surname, Date, Address, Gender] to be able to assign in an access screen the next. And then apply it to the Razor frontend Thanks in advance
Published Date : 2023년 3월 23일 목요일

Unable to Update Record in Access Database Using C# and OleDb - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192622/unable-to-update-record-in-access-database-using-c Hello, I am working on a Windows Forms application using C# and the .NET Framework, and I have encountered an issue when trying to update a record in an Access database. I'm using OleDb to connect to the Access database, and I can successfully insert new records, but when I try to update an existing record, it fails, and no rows are affected. Here's my database schema for the MedicalHistory table: Here's the C# code I'm using to update the record: I've tested the same UPDATE query directly in Access, and it works as expected. However, when executed through the C# code, it doesn't update the record and no rows are affected. I've already tried the following: None of these attempts resolved the issue. Could anyone please help me understand what might be causing the problem, or suggest any additional steps I can take to troubleshoot and fix the issue? Note: I've been using GPT-4 to help me code & debug this but it eventually suggested I turn to the developer forums (I've never experienced that!). Also thought Id get it to write me joke about my problem, here you go. Why did the developer turn to ChatGPT for help with their code? Because they thought it was a "GPT" (Great Programming Teacher)! But when ChatGPT said to ask other devs, the developer couldn't help but laugh, realizing that even the Great Programming Teacher sometimes needs a "human touch" in debugging! 😄
Published Date : 2023년 3월 23일 목요일

Downloading Core 7 for a x64 bit windows 11 operating system - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192596/downloading-core-7-for-a-x64-bit-windows-11-operat I've been working with .net core 6. I tend to want to stay with it because I am used to it, but I'm considering upgrading to .core 7, since it is available. Would it be advisable to upgrade to 7 for new projects? The download page seems complicated... 64-bit operating system, x64-based processor ...am I going in the right direction?
Published Date : 2023년 3월 23일 목요일

Export Excel Files to Azure Blob Storage from websites hosted on Azure App Service - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192484/export-excel-files-to-azure-blob-storage-from-webs Previously we were using IIS for deploying .NET web application. One export to excel button had been given on UI to export details from database to Excel file and then it will be downloaded to local disc storage. We used Microsoft Office Interop Excel to export file. It was working fine locally. But when we deployed application on Azure App service, it was not downloading files in local disk. Can we export excel file to Azure Blob Storage with the help of Microsoft Office Interop Excel??
Published Date : 2023년 3월 23일 목요일

Running or Downloading Contoso University from GitHub - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192187/running-or-downloading-contoso-university-from-git I am trying to download a completed copy of the Contoso University Demo from GitHub. cu_final is probably the copy I want. I open cu_final and I see the familiar .net file structure for a project. I am encouraged. When I hit the <> Code button the contents shown change to something unfamiliar but maybe the project is contained within one of the subfolders... I chose both to open with Visual Studio, which downloaded the file, and to download as a zip file. Result was the same. Visual Studio message requested to find startup item to run the project. A search of folder came up with no .sln items. I tried a subfolder...seeing a simplified project file structure, no .sln item. Questions:
Published Date : 2023년 3월 23일 목요일

Error when trying to use "Report a Problem" in VS .Net Maui 2022 v17.5.3 - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192551/error-when-trying-to-use-report-a-problem-in-vs-ne 1st I receive an error message when trying to "Sign-in" from Visual Studio .Net Maui 2022, V17.5.3 Community Edition" (see attachment 'Sign-in Error.png'). Then when I try to use "Report a Problem" in Visual Studio .Net Maui 2022, V17.5.3, upon attempting to sign in thru the developercommunity.visualstudio.com website (because it won't allow me to sign in using VS) - I get the error message, "We could not add the account...the authorization server returned an invalid response" (see attachments 'Sign-in to Developer Community Website from VS2022 - 1.png' & 'Sign-in to Developer Community Website from VS2022 - 2.png'). Any help is welcome. I need to submit an issue from my project. Thanks! Sign-in to Developer Community Website from VS2022 - 1.png Sign-in Error.png Sign-in to Developer Community Website from VS2022 - 2.png
Published Date : 2023년 3월 23일 목요일

Bing ads api - InternalServiceFault when calling SubmitGenerateReport Service - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1045331/bing-ads-api-internalservicefault-when-calling-sub The error : InternalServiceFault: The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs. Here is the soap envelope i use : <SubmitGenerateReportRequest xmlns="https://bingads.microsoft.com/Reporting/v13"> <ReportRequest type="BudgetSummaryReportRequest"> <Columns> <BudgetSummaryReportColumn>AccountName</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>AccountNumber</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>AccountId</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>CampaignName</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>CampaignId</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>Date</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>CurrencyCode</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>MonthlyBudget</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>DailySpend</BudgetSummaryReportColumn> <BudgetSummaryReportColumn>MonthToDateSpend</BudgetSummaryReportColumn> </Columns> <ExcludeColumnHeaders>false</ExcludeColumnHeaders> <ExcludeReportFooter>false</ExcludeReportFooter> <ExcludeReportHeader>false</ExcludeReportHeader> <Format>Csv</Format> <FormatVersion>2.0</FormatVersion> <ReportName>BudgetSummaryReport</ReportName> <ReturnOnlyCompleteData>true</ReturnOnlyCompleteData> <Scope> <AccountIds> <long>xx</long> </AccountIds> <Campaigns> <CampaignReportScope> <AccountId>xx</AccountId> <CampaignId>xx</CampaignId> </CampaignReportScope> <CampaignReportScope> <AccountId>xx</AccountId> <CampaignId>xx</CampaignId> </CampaignReportScope> <CampaignReportScope> <AccountId>xx</AccountId> <CampaignId>xx</CampaignId> </CampaignReportScope> <CampaignReportScope> <AccountId>xx</AccountId> <CampaignId>xx</CampaignId> </CampaignReportScope> </Campaigns> </Scope> <Time> <CustomDateRangeEnd> <Day>11</Day> <Month>10</Month> <Year>2022</Year> </CustomDateRangeEnd> <CustomDateRangeStart> <Day>10</Day> <Month>10</Month> <Year>2022</Year> </CustomDateRangeStart> <PredefinedTime xsi:nil="true"></PredefinedTime> <ReportTimeZone>BrusselsCopenhagenMadridParis</ReportTimeZone> </Time> </ReportRequest> </SubmitGenerateReportRequest> How can i get get more information about the error ?
Published Date : 2023년 3월 23일 목요일

Http chunk encoding miss end of chunked encoding("0\r\n") or tailer("\r\n") on IIS 7.5 - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192069/http-chunk-encoding-miss-end-of-chunked-encoding(0 I create a simple ASP .NET Application and write a generic web handler (HelloFilterWithClose.ashx). HelloFilterWithClose.ashx ProcessRequest with setting a HttpResponse.Filter(MyFilter), and it response to http client with write a PDF file to http body. After writing a PDF file to http body, it Flush and Close HttpResponse. Running the app on IIS 7.5 Windows Server 2008 R2 sets the transfer encoding of the response to chunked and Wireshark shows that there is only one data chunk but no end of chunked encoding("0\r\n") or tailer("\r\n") Running the app on IIS 10 will have no above problem. MyFilter: HelloFilterWithClose.ashx: End
Published Date : 2023년 3월 23일 목요일

SCCM Reports disappearing from console intermittently but working fine from SSRS web portal. - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1082393/sccm-reports-disappearing-from-console-intermitten SCCM Reports disappearing from console intermittently but working fine from SSRS web portal. Recently installed SCCM 2207 Server. Issue: SCCM Reports appears in console for few seconds & then disappears and console shows "no items found", reappears after refreshing console multiple times & disappears again after few seconds. At the same time, below error gets generated in event viewer repetitively. Please help, need to fix this issue ASAP. System.Net.WebException\r\nThe underlying connection was closed: An unexpected error occurred on a receive.\r\n at System.Net.HttpWebRequest.GetResponse() at Microsoft.ConfigurationManagement.Reporting.Utility.GetFavoriteReportId() at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.FavoritesReportDisplayHelper.FavoriteReportIcon(IResultObject resultObject, String assemblyMethod, AssemblyDescription& resourceAssembly) at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.FavoritesReportDisplayHelper.ShowFavoriteReportIcon(Object sender, ScopeNode scopeNode, IResultObject resultObject, AssemblyDescription& resourceAssembly)\r\nSystem.IO.IOException\r\nUnable to read data from the transport connection: An existing connection was forcibly closed by the remote host.\r\n at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size) at System.Net.PooledStream.Read(Byte[] buffer, Int32 offset, Int32 size) at System.Net.Connection.SyncRead(HttpWebRequest request, Boolean userRetrievedStream, Boolean probeRead)\r\nSystem.Net.Sockets.SocketException\r\nAn existing connection was forcibly closed by the remote host\r\n at System.Net.Sockets.Socket.Receive(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags) at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)\r\n If i try to run report when its visible in console, (sometime) it runs properly but after some time it throws below error. The underlying connection was closed: An unexpected error occurred on a receive. ------------------------------- Microsoft.ConfigurationManagement.ManagementProvider.SmsException The underlying connection was closed: An unexpected error occurred on a receive. Stack Trace: at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters() at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject) at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- System.Net.WebException The underlying connection was closed: An unexpected error occurred on a receive. Stack Trace: at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters() at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject) at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. Stack Trace: at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters() at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject) at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- System.Net.Sockets.SocketException An existing connection was forcibly closed by the remote host Stack Trace: at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters() at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport report, Collection`1 navigationParameters, IResultObject resultObject) at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object sender, DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument) ------------------------------- Thanks, MG
Published Date : 2023년 3월 23일 목요일

Visual Studio Constantly Hangs and Freezes or Restarts Itself Randomly - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/523013/visual-studio-constantly-hangs-and-freezes-or-rest I am using Visual Studio 2019. I have 64 gb of ram, use 1tb NVMe drives, 12 core 4.10 GHz processor, Windows 10 OS. And even with this decent machine, Visual Studio hangs and freezes very often. I am a programmer by trade, I code at least 8 hours a day and I'd say Visual Studio locks up, stops responding around 5 times per day and randomly crashes and restarts itself around 3 times per day. The crash/restarts don't come with a hang or any warning at all. The program just completely and instantly closes itself with no warning at all. When the program freezes, in the device manager, Visual Studio will often be consuming >50% of my CPU and >33% of my RAM - which seems like a lot given my machine. I generally give the hangs about a minute to try and resolve themselves. Maybe 10% they actually resolve themselves and I can continue on. 50% of the the time, it hangs for over a minute and I have to end task in task manager. The rest of the time, it crashes after hanging for a bit. I have notices that in the rare chance that the program recovers by itself, it often feels less stable afterwards - slow to respond, much slower to think about things, delayed typing (press keys and they don't show up on screen for a few seconds, then appear all at once). Sometimes it gets like this without any hangs first. When it gets like this, I end up killing visual studio and restarting it to try and get back to a usable state. I code unreal engine projects mostly and use the engine source so my projects are always rather large. The only plugins I use are Visual Assist and CodeMaid but the crashes/hangs happen without these plugins as well. What can I do to make my Visual Studio more stable? These crashes and hangs are very disruptive. P.S. the tag system on this forum is really frustrating and unintuitive to use. The user should be able to see all available tags or add their own. Or there needs to be a smarter lookup. I tried tagging this issue with 'crash' 'hang' 'unresponsive' 'visual studio' 'vs2019' and a few others and none of them were valid tags and it gives you no clue what tag it does have that might be similar. I ended up having to search for similar issues on this site to this one and see what tags they used. I had to use 'vs-general'. For your system to guess what tag you're trying to add, you have to give at least 3 characters (why? you can do better. It should guess from the very first character.) Do you see the problem? Provide 3 characters? 'vs-general'? How on earth is someone supposed to guess that the magic 3 characters they need to type in is 'vs-'? Please do better.
Published Date : 2023년 3월 23일 목요일

ODataError: Exception on Client credentials provider authenticion for Microsoft Graph - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192496/odataerror-exception-on-client-credentials-provide I have this code: with these permissions: In a basic .NET Core 7 app with added Microsoft.Graph. It returns error: ODataError: Exception of type 'Microsoft.Graph.Models.ODataErrors.ODataError' was thrown. What am I missing? Thanks in advance!
Published Date : 2023년 3월 23일 목요일

지원되는 플랫폼 IoT Edge

https://learn.microsoft.com/ko-kr/azure/iot-edge/support Azure IoT Edge 지원되는 운영 체제, 런타임 및 컨테이너 엔진입니다.
Published Date : 2023년 3월 23일 목요일

How to retrieve customer mails with oauth instead of basic auth imap in Microsoft Exchange - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1183508/how-to-retrieve-customer-mails-with-oauth-instead I have made a .Net WPF Desktop-App which allows customers outside of our domain(outside of our azure tenant etc.) to automatically export mails from IMAP Office365 Accounts. Since Microsoft disabled this legacy authentication method, it seems we need to switch to OAuth. Would the correct approach be to setup an Azure Account, generate Tenant and Client id and put both into the desktop app and implement something like this: https://github.com/jstedfast/MailKit/blob/master/ExchangeOAuth2.md to get the imap-client ? I can't figure out by any documentation from Microsoft if this is supposed to be an method for the companies own users or external Microsoft accounts from customers which adresses we dont know. Also is it safe to put the Client- and Tenant ID into the desktop app for customers? It also seems we need to invite any third party Office365 User to out tenant as guest for this. Is this correct? Can we setup self sign up flow for this purpose? Thanks for reading.
Published Date : 2023년 3월 23일 목요일

Azure Data Factory Copy From SQL On premise to Azure Postgres? - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192427/azure-data-factory-copy-from-sql-on-premise-to-azu Hi I am trying to do a simple copy actitivity in Azure Data Factory Data Pipelines. The source is a SQL On premise database. I can preview data fine. The Sink is a Azure Postgresql Cluster. The test connection returns with success. When I try to execute the pipeline it returns an error: 'Type=System.Net.Sockets.SocketException,Message=No connection could be made because the target machine actively refused it,Source=Npgsql,' If I change the Source to a CSV file everything works fine. I would prefer not to stage the data as files in Storage Lake if possible. Why do I get this error? Thanks in advance
Published Date : 2023년 3월 23일 목요일

Attribute 'Table' is not valid on this declaration type. It is valid on 'type' declarations only. - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1186422/attribute-table-is-not-valid-on-this-declaration-t I'm doing the Output Binding in Azure Functions .NET 6. Whatever the input data I'm receiving, that passing to the table in the table storage but two errors I'm getting. Could anyone help me where I'm doing wrong?
Published Date : 2023년 3월 23일 목요일

`_logger.LogInformation` not printing the message to the console in .NET 6 - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192410/logger-loginformation-not-printing-the-message-to Not getting the logger information in the console output - Service Bus Trigger Running Locally host.json: Function.cs Output: I'm not getting the message that is
Published Date : 2023년 3월 23일 목요일

.NET Maui How to convert a byte array image to a .NET maui image - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1191736/net-maui-how-to-convert-a-byte-array-image-to-a-ne Hi There seems to be some difference between the System.Drawing.Image and the Microsoft.Maui.Controls.Image, and I have failed implementing any of the solutions found online. I have a test page created with this Xaml code: The code behind looks like this: MovieService.ActorData is a class containing several object, but the ones used here is tActFirstName, tActLastName which both are strings and tActPhoto which is a byte array (Byte[]) As you can see I try to convert the byte array to a stream which is then used as an ImageSource for the Xaml image. This does not work, as well as all other tests I have done. The code above seems to give this error: [Glide] class com.bumptech.glide.load.engine.GlideException: Failed to load resource I have limited experience in C# developing, and this seems to be over my head. Can anyone help me with as sample applying text and image to the page from the C# code behind?
Published Date : 2023년 3월 23일 목요일

Is there a way we can integrate .NET MAUI onto existing swift code project - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192333/is-there-a-way-we-can-integrate-net-maui-onto-exis I have an project which was developed in Swift using Xcode. Is there a way we can integrate .NET MAUI on to existing Swift project ?
Published Date : 2023년 3월 23일 목요일

Possible Handle Leak on Azure App Service App - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1163199/possible-handle-leak-on-azure-app-service-app We have an ASP.NET 4.8 application hosted in Azure App Service. At times we see a spike in latency in usually a single instance which also shows spikes in CPU time, TCP connections, Thread Count and Handle count. The average thread count and and average handle count spikes from about 100 to 450 and 4000 to 8000+ respectively. We did an investigation by analysing memory dumps through windbg and could see the number of Event and Thread handles were unusually high at this time. The thread and handle count does not come down for quite a few time, but the latency is only felt right at the beginning of this spike. So we believe the CPU time and latency spikes are due to the cost of thread and handle spawning. How can we further debug the potential handle or thread leak issue ? I am not able to find out what requests are causing the spikes in thread and handle from windbg. I read some docs but still not getting clarity on what is thread and event handles.
Published Date : 2023년 3월 23일 목요일

Unknown icon appears in the header of Adaptive Card - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1191170/unknown-icon-appears-in-the-header-of-adaptive-car Hello: I am writing to seek assistance with an issue that I have encountered while developing an application using the .NET SDK for Microsoft Graph API. Recently, I have noticed that when sending Adaptive Cards to a chat room in Microsoft Teams, an unknown icon appears at the top of the card's header. However, this icon does not appear on mobile devices running iOS or Android. This issue did not occur in February, but has surfaced since March. I would like to know if this is a known issue with the desktop version of Microsoft Teams and if there are any solutions available to resolve this problem. Thank you for your time and assistance. Best regards, Chih Wei Lin
Published Date : 2023년 3월 23일 목요일

String interpolation using $ throws System.NullReferenceException on .Net7 - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1167240/string-interpolation-using-throws-system-nullrefer We have in my team just upgraded to .net 7 from 6, but we have run into a issues with string interpolation using We are all developing on Intel Macbook Pro's using both Visual Studio or JetBrains Rider. But since the upgrade to .net7, im getting an error: System.NullReferenceException: Object reference not set to an instance of an object. at System.Buffer.Memmove(Byte& dest, Byte& src, UIntPtr len) at System.Runtime.CompilerServices.DefaultInterpolatedStringHandler.AppendStringDirect(String value) Example: In the example above it fails on the sqlGet line, if i run it in Windows it does not throw an exception, neither did it in .net 6 on both Mac or Windows. It only happens on .net7 and on Mac OS(Intel or M1 Mac's). I have tried both in Jetbrains Rider and Visual Studio. I have tried with different ways and it still fails on string interpolation ala like below: In both examples are there NO values that are NULL. Any idea how to fix this issue.
Published Date : 2023년 3월 23일 목요일

deploying win form app with sql server express and create the database of the project on the client machine during installation - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192146/deploying-win-form-app-with-sql-server-express-and Hello guys how are you doing , i have developed my first winform application i created a database in SQL server management studio and everything is working well on my computer , now i want to deploy the application to be working on the client machine so i need to include the sql server as well as creating the database during the installation . i have managed i have tried to copy the mdf file of the database on the client machine and attach it using SQL server management studio and it worked fine , so my question is .... how to make the setup files create and include the mdf file in the right directory ?? so i do not need to install sql server managemnt on the client machine and copy the mdf file manually !! i was thinking the whole operation should be executed during installation and no need for extra un
Published Date : 2023년 3월 23일 목요일

How to fix a windows based .net application performance issue and run multiple instance of it in task scheduler. - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192350/how-to-fix-a-windows-based-net-application-perform I am running one windows application under task scheduler which is getting data from one 3rd party API and process other information. now, I want to run multiple instance of this application under one server.
Published Date : 2023년 3월 23일 목요일

ASP.NET Core에서 호스팅되는 서비스를 사용하는 백그라운드 작업

https://learn.microsoft.com/ko-kr/aspnet/core/fundamentals/host/hosted-services ASP.NET Core에서 호스팅되는 서비스를 사용하는 백그라운드 작업을 구현하는 방법을 배웁니다.
Published Date : 2023년 3월 23일 목요일

개체 이름 지정에 대한 제한 사항 및 규칙 - Azure DevOps

https://learn.microsoft.com/ko-kr/azure/devops/organizations/settings/naming-restrictions 길이, 고유성 및 특수 문자별로 조직, 프로젝트, 태그, 템플릿 등과 같은 개체의 레이블 지정 일관성에 대한 요구 사항입니다.
Published Date : 2023년 3월 23일 목요일

Azure Data Factory - Copy Activity fails intermittently with "Failure happened on 'Source' side. ErrorCode=UserErrorFailedFileOperation" - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1191853/azure-data-factory-copy-activity-fails-intermitten Azure Data Factory - Copy Activity fails intermittently with the following error message: Operation on target SqlServer_to_ADLS failed: Failure happened on 'Source' side. ErrorCode=UserErrorFailedFileOperation,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=Upload file failed at path devlake/jbtrn_owner_alloc\jbtrn_owner_alloc.parquet.,Source=Microsoft.DataTransfer.Common,''Type=System.Data.SqlClient.SqlException,Message=A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.),Source=.Net SqlClient Data Provider,SqlErrorNumber=64,Class=20,ErrorCode=-2146232060,State=0,Errors=[{Class=20,Number=64,State=0,Message=A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.),},],''Type=System.ComponentModel.Win32Exception,Message=The specified network name is no longer available,Source=,' Source: SqlServer Target: Azure Data lake Gen 2. Steps already tried that didn't help: Things to note: The part that is not clear is if the error is occurring on the source SQL database or the Azure Data Lake Storage.
Published Date : 2023년 3월 23일 목요일

.net Maui is installed but is not shown in viusal studio 2022 - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192246/net-maui-is-installed-but-is-not-shown-in-viusal-s i update visual to 17.5.3 but maui is installed but not shown in visual studio , what's problem ? by the way , when i updated visual i have two errors can this have is effect ?
Published Date : 2023년 3월 22일 수요일

파이프라인 캐싱 - Azure Pipelines

https://learn.microsoft.com/ko-kr/azure/devops/pipelines/release/caching 실행 간에 종속성과 같은 파일을 캐싱하여 파이프라인 성능 향상
Published Date : 2023년 3월 22일 수요일

Azure Application Insights를 사용하여 ASP.NET에 대한 모니터링 구성 - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/asp-net Azure 또는 온-프레미스에 호스트되는 ASP.NET 웹 사이트에 대한 성능, 가용성 및 사용자 동작 분석 도구를 구성합니다.
Published Date : 2023년 3월 22일 수요일

LINQ to SQL 변환 - Azure Cosmos DB for NoSQL

https://learn.microsoft.com/ko-kr/azure/cosmos-db/nosql/query/linq-to-sql 지원되는 LINQ 연산자 및 LINQ 쿼리가 Azure Cosmos DB의 SQL 쿼리에 매핑되는 방법을 알아봅니다.
Published Date : 2023년 3월 22일 수요일

Application Insights에서 .NET 추적 로그 탐색 - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/asp-net-trace-logs 추적, NLog 또는 Log4Net에서 생성된 로그를 검색합니다.
Published Date : 2023년 3월 22일 수요일

Azure VM에서 성능 모니터링 - Azure Application Insights - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/azure-vm-vmss-apps Azure 가상 머신 및 가상 머신 확장 집합에 대한 애플리케이션 성능 모니터링.
Published Date : 2023년 3월 22일 수요일

C# REST SDK를 사용하여 Azure Maps 애플리케이션을 만드는 방법 - Azure Maps

https://learn.microsoft.com/ko-kr/azure/azure-maps/how-to-dev-guide-csharp-sdk C# SDK 개발자 가이드를 사용하여 Azure Maps를 통합하는 애플리케이션을 개발하는 방법입니다.
Published Date : 2023년 3월 22일 수요일

Azure Cosmos DB for Table 설명서

https://learn.microsoft.com/ko-kr/azure/cosmos-db/table/ Azure Cosmos DB는 Azure Table Storage용으로 작성되었으며 프리미엄 기능이 필요한 애플리케이션에 대한 API for Table을 제공합니다.
Published Date : 2023년 3월 22일 수요일

Azure Service Bus 메시지 세션 - Azure Service Bus

https://learn.microsoft.com/ko-kr/azure/service-bus-messaging/message-sessions 이 문서에서는 세션을 사용하여 관련 메시지의 무제한 시퀀스를 공동으로 순서를 지정하여 처리하는 방법을 설명합니다.
Published Date : 2023년 3월 22일 수요일

.NET Core에서 Azure App Service 성능 모니터링 - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/azure-web-apps-net-core ASP.NET Core를 사용하는 Azure App Service에 대한 애플리케이션 성능 모니터링 차트 부하 및 응답 시간, 종속성 정보 및 성능에 대한 경고를 설정합니다.
Published Date : 2023년 3월 22일 수요일

Azure Functions를 사용하여 사용자 지정 가용성 테스트 만들기 및 실행 - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/availability-azure-functions 이 문서에서는 TimerTrigger 함수에 지정된 구성에 따라 주기적으로 실행되는 TrackAvailability()를 사용하여 Azure 함수를 만드는 방법을 설명합니다.
Published Date : 2023년 3월 22일 수요일

Azure Monitor에서 사용하는 IP 주소 - Azure Monitor

https://learn.microsoft.com/ko-kr/azure/azure-monitor/app/ip-addresses 이 문서에서는 Azure Monitor에 필요한 서버 방화벽 예외에 대해 설명합니다.
Published Date : 2023년 3월 22일 수요일

자습서: IoT 공간 분석 구현

https://learn.microsoft.com/ko-kr/azure/azure-maps/tutorial-iot-hub-maps IoT Hub를 Microsoft Azure Maps 서비스 API와 통합하는 방법에 대한 자습서
Published Date : 2023년 3월 22일 수요일

Azure Application Gateway와 SignalR Service를 사용하는 방법

https://learn.microsoft.com/ko-kr/azure/azure-signalr/signalr-howto-work-with-app-gateway 이 문서에서는 Azure Application Gateway와 Azure SignalR Service를 사용하는 방법에 대한 정보를 제공합니다.
Published Date : 2023년 3월 22일 수요일

자습서 - Google Maps에서 웹 서비스 마이그레이션

https://learn.microsoft.com/ko-kr/azure/azure-maps/migrate-from-google-maps-web-services Google Maps에서 Microsoft Azure Maps로 웹 서비스를 마이그레이션하는 방법에 대한 자습서
Published Date : 2023년 3월 22일 수요일

자습서: 웹 서비스를 Bing Maps에서 Microsoft Azure Maps로 마이그레이션

https://learn.microsoft.com/ko-kr/azure/azure-maps/migrate-from-bing-maps-web-services Bing Maps에서 Microsoft Azure Maps로 웹 서비스를 마이그레이션하는 방법에 대한 자습서.
Published Date : 2023년 3월 22일 수요일

ASP.NET Core Blazor 앱에서 웹 API 호출

https://learn.microsoft.com/ko-kr/aspnet/core/blazor/call-web-api Blazor 앱에서 웹 API를 호출하는 방법을 알아봅니다.
Published Date : 2023년 3월 22일 수요일

ASP.NET Core에서 Kestrel 웹 서버 구현

https://learn.microsoft.com/ko-kr/aspnet/core/fundamentals/servers/kestrel ASP.NET Core의 플랫폼 간 웹 서버인 Kestrel에 대해 알아봅니다.
Published Date : 2023년 3월 22일 수요일

ASP.NET Core의 속도 제한 미들웨어

https://learn.microsoft.com/ko-kr/aspnet/core/performance/rate-limit ASP.NET Core 앱에서 요청을 제한하는 방법 알아보기
Published Date : 2023년 3월 22일 수요일

Azure App Service에 ASP.NET Core 앱 배포

https://learn.microsoft.com/ko-kr/aspnet/core/host-and-deploy/azure-apps/ 이 문서에는 Azure 호스트 및 배포 리소스의 링크가 포함됩니다.
Published Date : 2023년 3월 22일 수요일

ASP.NET Core 지역화 문제 해결

https://learn.microsoft.com/ko-kr/aspnet/core/fundamentals/troubleshoot-aspnet-core-localization ASP.NET Core 앱에서 지역화 관련 문제를 진단하는 방법을 알아봅니다.
Published Date : 2023년 3월 22일 수요일

Problem with changing SSAS Tabular model by TOM - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192282/problem-with-changing-ssas-tabular-model-by-tom Hi! I try develop SSAS Tabular model by TOM API and C# language. Unfortunately, I have some problem with change model. We have ready model in project, that was developed with using VS 2019 UI interface. I haven't problem with get information about model by SSAS library for .NET Core.- sources, tables, partitions. But when I try add new partition in table or add source in model, I don't see changes after code processing and there aren't errors in compilation... Environment info: Maybe it depend on different . NET version in SSAS project and administration project? Or I using wrong NuGet package? I will grateful for your help. Code below.
Published Date : 2023년 3월 22일 수요일

Assembly Class (Microsoft.AnalysisServices)

https://learn.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.assembly Represents a COM or .NET library that can contain several classes with several methods; all of which are potential stored procedures.
Published Date : 2023년 3월 22일 수요일

Assembly Class (Microsoft.AnalysisServices.Core)

https://learn.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.core.assembly Represents a COM or .NET library that can contain several classes with several methods; all of which are potential stored procedures.
Published Date : 2023년 3월 22일 수요일

ReportViewer WebForms TotalPages shows zero when there are multiple pages - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192288/reportviewer-webforms-totalpages-shows-zero-when-t I have an application that uses Microsoft.ReportingServices.ReportViewerControl.WebForms Version: 150.1537.0 (.NET 4.8 framework) to display SSRS reports. The issue that I'm currently experiencing is that sometimes the TotalPages number in the toolbar shows 0 when there is in fact more than 1 page. If I click the Next Page button, the report re-renders and the toolbar shows the correct page numbers. See screen shot below. Any ideas on how to fix this or is it an issue with the existing ReportViewerControl version?
Published Date : 2023년 3월 22일 수요일

시험 PL-400: Microsoft Power Platform Developer - Certifications

https://learn.microsoft.com/ko-kr/certifications/exams/pl-400 시험 PL-400: Microsoft Power Platform Developer
Published Date : 2023년 3월 22일 수요일

자습서: 관리 ID를 사용하여 데이터 액세스 - Azure App Service

https://learn.microsoft.com/ko-kr/azure/app-service/tutorial-connect-msi-sql-database 샘플 .NET 웹앱의 관리 ID를 사용하여 Azure SQL Database 연결을 보호하고 이를 다른 Azure 서비스에 적용하는 방법도 있습니다.
Published Date : 2023년 3월 22일 수요일

기존 에이전트 기반 하이브리드 작업자를 Azure Automation 확장 기반 작업자로 마이그레이션

https://learn.microsoft.com/ko-kr/azure/automation/migrate-existing-agent-based-hybrid-worker-to-extension-based-workers 이 문서에서는 기존 에이전트 기반 하이브리드 작업자를 확장 기반 작업자로 마이그레이션하는 방법에 대한 정보를 제공합니다.
Published Date : 2023년 3월 22일 수요일

Microsoft.ServiceFabric/clusters 2016-09-01 - Bicep, ARM template & Terraform AzAPI reference

https://learn.microsoft.com/ko-kr/azure/templates/microsoft.servicefabric/2016-09-01/clusters 리소스를 배포하기 위해 Azure Resource Manager 템플릿에서 사용할 Azure Microsoft.ServiceFabric/clusters 구문 및 속성입니다. API 버전 2016-09-01
Published Date : 2023년 3월 22일 수요일

.NET 6.0 migration issues leads to MySQL stored procedure calling - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192182/net-6-0-migration-issues-leads-to-mysql-stored-pro Once we migrate .NET core 3.1 applications to .NET 6.0, we get below issue while calling MySQL stored procedure, The LINQ expression could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.
Published Date : 2023년 3월 22일 수요일

.NET SDK for Custom Classifier Model in Form Recognizer - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1192219/net-sdk-for-custom-classifier-model-in-form-recogn Hello, Will the Azure.AI.FormRecognizer nuget package for .NET soon support the new custom classifier model that's part of the 2023-02-28-preview release? Thanks, Craig
Published Date : 2023년 3월 22일 수요일

Minimal Change Feed Works for a few minutes and mysteriously quits - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1190766/minimal-change-feed-works-for-a-few-minutes-and-my I have created a C# change feed using the Visual Studio 2022 (Preview) template and I have used Visual Studio to create the azure function app (with .NET 6) and required infrastructure (eg. storage account). This is not an isolated or durable Function App. After using the Cosmos Data Explorer in the portal to create items I use az webapp log tail -g rg_CosmosChangeFeed -n MyCosmosChangeFeed and it seems to be working great! Then (last night) I took a dinner break for an hour or two and I restart the "az webapp log tail" and use data explorer to create some new items and nothing happens until I re-publish the Function App via Visual Studio and restart the 'az webapp log tail' (and then it starts working again). I was able to repeat this several times last night. How can I get some more clues? Are there other logs I should be looking at?
Published Date : 2023년 3월 22일 수요일

Issue using Adaptive Toggle Action in Teams Bot - Microsoft Q&A

https://learn.microsoft.com/en-us/answers/questions/1153351/issue-using-adaptive-toggle-action-in-teams-bot Hello, I am building a feature into an adaptive card which will allow users to toggle between displaying a full text block and a truncated text block. We are using an Azure Bot in MS Teams with the .NET SDK. The issue I will be describing occurs on desktop and web versions of Teams, but not on mobile. I'm creating two Adaptive Containers, each with a Text Block and a Select Action:
Published Date : 2023년 3월 22일 수요일

CosmosClientOptions.HttpClientFactory Property (Microsoft.Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.cosmosclientoptions.httpclientfactory Gets or sets a delegate to use to obtain an HttpClient instance to be used for HTTPS communication.
Published Date : 2023년 3월 22일 수요일

IDocumentClient Interface (Microsoft.Azure.Documents) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.idocumentclient The IDocumentClient interface captures the API signatures of the Azure Cosmos DB service .NET SDK. See DocumentClient for implementation details.
Published Date : 2023년 3월 22일 수요일

DocumentClient.ReadDocumentFeedAsync Method (Microsoft.Azure.Documents.Client) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.client.documentclient.readdocumentfeedasync Reads the feed (sequence) of documents for a specified collection from the Azure Cosmos DB service. This takes returns a ResourceResponse<TResource> which will contain an enumerable list of dynamic objects.
Published Date : 2023년 3월 22일 수요일

IDocumentClient.ReadDocumentFeedAsync Method (Microsoft.Azure.Documents) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.idocumentclient.readdocumentfeedasync Reads the feed (sequence) of documents for a collection as an asynchronous operation in the Azure Cosmos DB service.
Published Date : 2023년 3월 22일 수요일

CosmosClient Class (Microsoft.Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.cosmosclient Provides a client-side logical representation of the Azure Cosmos DB account. This client can be used to configure and execute requests in the Azure Cosmos DB database service. CosmosClient is thread-safe. Its recommended to maintain a single instance of CosmosClient per lifetime of the application which enables efficient connection management and performance. Please refer to the performance guide.
Published Date : 2023년 3월 22일 수요일

CosmosClientOptions Class (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.cosmosclientoptions Defines all the configurable options that the CosmosClient requires.
Published Date : 2023년 3월 22일 수요일

EventHubProducerClient Class (Azure.Messaging.EventHubs.Producer) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.messaging.eventhubs.producer.eventhubproducerclient A client responsible for publishing EventData to a specific Event Hub, grouped together in batches. Depending on the options specified when sending, events may be automatically assigned an available partition or may request a specific partition. The EventHubProducerClient publishes immediately, ensuring a deterministic outcome for each send operation, though requires that callers own the responsibility of building and managing batches. In scenarios where it is not important to have events published immediately and where maximizing partition availability is not a requirement, it is recommended to consider using the EventHubBufferedProducerClient, which takes responsibility for building and managing batches to reduce the complexity of doing so in application code.
Published Date : 2023년 3월 22일 수요일

ItemRequestOptions Constructor (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.itemrequestoptions.-ctor Learn more about the Azure.Cosmos.ItemRequestOptions.ItemRequestOptions in the Azure.Cosmos namespace.
Published Date : 2023년 3월 22일 수요일

CosmosClientOptions Class (Microsoft.Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.cosmosclientoptions Defines all the configurable options that the CosmosClient requires.
Published Date : 2023년 3월 22일 수요일

ContainerProperties Constructor (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.containerproperties.-ctor Initializes a new instance of the ContainerProperties class for the Azure Cosmos DB service.
Published Date : 2023년 3월 22일 수요일

EventData Class (Azure.Messaging.EventHubs) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.messaging.eventhubs.eventdata An Event Hubs event, encapsulating a set of data and its associated metadata.
Published Date : 2023년 3월 22일 수요일

CosmosClient.CreateDatabaseIfNotExistsAsync Method (Microsoft.Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.cosmosclient.createdatabaseifnotexistsasync Check if a database exists, and if it doesn't, create it. Only the database id is used to verify if there is an existing database. Other database properties such as throughput are not validated and can be different then the passed properties. A database manages users, permissions and a set of containers. Each Azure Cosmos DB Database Account is able to support multiple independent named databases, with the database being the logical container for data. Each Database consists of one or more containers, each of which in turn contain one or more documents. Since databases are an administrative resource, the Service Master Key will be required in order to access and successfully complete any action using the User APIs.
Published Date : 2023년 3월 22일 수요일

EventData.SequenceNumber Property (Azure.Messaging.EventHubs) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.messaging.eventhubs.eventdata.sequencenumber The sequence number assigned to the event when it was enqueued in the associated Event Hub partition.
Published Date : 2023년 3월 22일 수요일

DocumentClient.CreateDocumentQuery Method (Microsoft.Azure.Documents.Client) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.client.documentclient.createdocumentquery Overloaded. This method creates a query for documents under a collection in an Azure Cosmos DB database using a SQL statement with parameterized values. It returns an IQueryable{dynamic}. For more information on preparing SQL statements with parameterized values, please see SqlQuerySpec.
Published Date : 2023년 3월 22일 수요일

EventData.EnqueuedTime Property (Azure.Messaging.EventHubs) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.messaging.eventhubs.eventdata.enqueuedtime The date and time, in UTC, of when the event was enqueued in the Event Hub partition.
Published Date : 2023년 3월 22일 수요일

DocumentClient Constructor (Microsoft.Azure.Documents.Client) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.client.documentclient.-ctor Initializes a new instance of the Microsoft.Azure.Documents.Client.DocumentClient class using the specified Azure Cosmos DB service endpoint, a dictionary of resource tokens and a connection policy.
Published Date : 2023년 3월 22일 수요일

DocumentClient Class (Microsoft.Azure.Documents.Client) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.documents.client.documentclient Provides a client-side logical representation for the Azure Cosmos DB service. This client is used to configure and execute requests against the service.
Published Date : 2023년 3월 22일 수요일

ContainerProperties Class (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.containerproperties Represents a document container in the Azure Cosmos DB service. A container is a named logical container for documents.
Published Date : 2023년 3월 22일 수요일

MetricAggregationScope Enum (Microsoft.ApplicationInsights) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.applicationinsights.metricaggregationscope Used when getting or creating a Metric to optionally specify the scope across which the values for the metric are to be aggregated in memory. Intended for advanced scenarios. The default "TelemetryConfiguration" is used whenever MetricAggregationScope is not specified explicitly.
Published Date : 2023년 3월 22일 수요일

CosmosClientOptions.ApplicationPreferredRegions Property (Microsoft.Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.cosmosclientoptions.applicationpreferredregions Gets and sets the preferred regions for geo-replicated database accounts in the Azure Cosmos DB service.
Published Date : 2023년 3월 22일 수요일

EventData.PartitionKey Property (Azure.Messaging.EventHubs) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.messaging.eventhubs.eventdata.partitionkey The partition hashing key applied to the batch that the associated EventData, was published with.
Published Date : 2023년 3월 22일 수요일

ContainerProperties.Id Property (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.containerproperties.id Gets or sets the Id of the resource in the Azure Cosmos DB service.
Published Date : 2023년 3월 22일 수요일

CosmosClientOptions.ApplicationRegion Property (Azure.Cosmos) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.cosmosclientoptions.applicationregion Get or set the preferred geo-replicated region to be used for Azure Cosmos DB service interaction.
Published Date : 2023년 3월 22일 수요일

CosmosScripts.DeleteUserDefinedFunctionAsync Method (Azure.Cosmos.Scripts) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.scripts.cosmosscripts.deleteuserdefinedfunctionasync Delete a UserDefinedFunctionProperties from the Azure Cosmos DB service as an asynchronous operation.
Published Date : 2023년 3월 22일 수요일

CosmosScripts.GetStoredProcedureQueryIterator Method (Azure.Cosmos.Scripts) - Azure for .NET Developers

https://learn.microsoft.com/en-us/dotnet/api/azure.cosmos.scripts.cosmosscripts.getstoredprocedurequeryiterator This method creates a query for stored procedures under a container using a SQL statement. It returns a FeedIterator. For more information on preparing SQL statements with parameterized values, please see QueryDefinition overload.
Published Date : 2023년 3월 22일 수요일