dotnet-api-docs
dotnet-api-docs copied to clipboard
.NET API reference documentation (.NET 5+, .NET Core, .NET Framework)
I specified Searcher.Filter = ((objectClass=user)(SAMAccountName=09433923)). I forgot to add an & before objectClass Filter. I kept getting "The directory service is unavailable" exception when Searcher.FindOne() method was called. As soon...
I'm trying to figure out how to do specific timings on my tooltips - open very quickly (but not immediate!). So I read the docs - https://learn.microsoft.com/en-us/dotnet/api/system.windows.controls.tooltipservice.betweenshowdelay?view=windowsdesktop-8.0#system-windows-controls-tooltipservice-betweenshowdelay. However, this doesn't...
The documentation for Debug.Assert says that it opens a message box. However this capability was removed in .NET Core 3.1, according to this issue: https://github.com/dotnet/winforms/issues/3739 It's not clear from the...
The content of the document is limited to 2/3 of the screen, which requires me to scroll to see the rest of the content despite the fact my monitor resolution...
The TypeConverter [page](https://learn.microsoft.com/en-us/dotnet/api/system.componentmodel.typeconverter?view=net-8.0) has two interesting links: [How to: Implement a Type Converter](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2013/ayybcxe5(v=vs.120)) and [Generalized Type Conversion](https://learn.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-2013/yy580hbd(v=vs.120)). Both lead to an outdated page. At least the pink banner tries to...
https://learn.microsoft.com/ja-jp/dotnet/api/system.memoryextensions.equals?view=net-6.0#system-memoryextensions-equals(system-readonlyspan((system-char))-system-readonlyspan((system-char))-system-stringcomparison) If you want to omit `comparisonType` or apply this method to non-char span types, you have to use `SequentialEqual` instead.
The docs for `Stream.Length` currently say: > When overridden in a derived class, gets the length in bytes of the stream. This is ambiguous, in the sense that I felt...