Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected (?) F# signature of Receive method #2754

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

bradleyscollins
Copy link
Contributor

Summary

The Receive method's F# signature was incorrect—the remoteEP parameter was missing:

<MemberSignature Language="F#" Value="member this.Receive :  -&gt; byte[]" Usage="udpClient.Receive remoteEP" />

Changed the signature and the usage to the following:

<MemberSignature Language="F#" Value="member this.Receive : (remoteEP : IPEndPoint ref) -&gt; byte[]" Usage="udpClient.Receive (ref remoteEP)" />

However, I am not quite sure how correct this is. The 'Value' attribute is probably correct, but the 'Usage' attribute is suspect. One would not simply pass in ref remoteEP but rather something more like this:

let remoteEndPointRef = ref (IPEndPoint (IPAddress.Any, 0))
let bytes = udpClient.Receive remoteEndPointRef
printfn "Received from %A: %A" !remoteEndPointRef bytes

Fixes [none]

The `Receive` method's F# signature was incorrect—the remoteEP parameter was missing:

``` xml
<MemberSignature Language="F#" Value="member this.Receive :  -&gt; byte[]" Usage="udpClient.Receive remoteEP" />
```

Changed the signature and the usage to the following:

``` xml
<MemberSignature Language="F#" Value="member this.Receive : (remoteEP : IPEndPoint ref) -&gt; byte[]" Usage="udpClient.Receive (ref remoteEP)" />
```

However, I am not quite sure how correct this is. The 'Value' attribute is probably correct, but the 'Usage' attribute is suspect. One would not simply pass in `ref remoteEP` but rather something more like this:

``` fsharp
let remoteEndPointRef = ref (IPEndPoint (IPAddress.Any, 0))
let bytes = udpClient.Receive remoteEndPointRef
printfn "Received from %A: %A" !remoteEndPointRef bytes
```

Finally, there is no F# example code. I should love to submit an F# version of the C# sample, but it is not at all clear to me how to add it!

The C# code sample is apparently an include of some sort:

```
[!code-csharp[Classic UdpClient.PublicMethodsAndPropertiesExample#11](~/samples/snippets/csharp/VS_Snippets_Remoting/Classic UdpClient.PublicMethodsAndPropertiesExample/CS/source.cs#11)]
```

Is there a way to do something similar to include an F# sample?
@bradleyscollins bradleyscollins requested a review from karelz as a code owner July 14, 2019 00:18
@rpetrusha
Copy link

Thanks for raising this issue, @bradleyscollins. The <MemberSignature> sections are created using reflection, which also means that any authored modification will be overwritten by the next reflection. @dend, @joelmartinez, and @cartermp, could you take a look?

@rpetrusha rpetrusha added the waiting-on-feedback Indicates PRs that are waiting for feedback from SMEs before they can be merged label Jul 15, 2019
@cartermp
Copy link
Contributor

Yeah, this is the correct signature. Unfortunately, the code generator that uses this is not a proper syntax-based code formatter and thus has multiple errors for F#. I'd like to take this, but I don't want the signature to get wiped again.

@joelmartinez
Copy link
Contributor

@cartermp I'm still planning on revisiting this PR:
mono/api-doc-tools#332

Does this batch of changes include a fix for this particular issue?

@mairaw
Copy link
Contributor

mairaw commented Jul 20, 2019

What should we do here? Next reflection run would erase this. Do we need a new issue or the existing work being done for F# already captures this @cartermp and @joelmartinez?

@joelmartinez
Copy link
Contributor

@mairaw I don't believe there is an existing internal issue for completing that work (though I already started reviewing it last week ... sent some feedback to @cartermp) ... I'll let him chime in on whether those changes include a fix for this particular issue or not :)

@mairaw mairaw added this to the July 2019 milestone Jul 24, 2019
@mairaw mairaw added the blocked Indicates issues or PRs that are blocked for some reason label Jul 24, 2019
@mairaw
Copy link
Contributor

mairaw commented Aug 6, 2019

@cartermp can you comment?

@joelmartinez
Copy link
Contributor

I just happened to speak with @mimisasouvanh about this issue yesterday, so from a PM/tracking perspective hopefully she can chime in as far as completing that PR :)

@mimisasouvanh
Copy link

Reaching out to @cartermp to confirm whether the changes in PR#332 includes a fix for this or not. If not, I'll create a customer suggestion to track internally.

@BillWagner
Copy link
Member

ping @cartermp I think this is fixed with the latest mdoc release. Can you confirm?

@cartermp
Copy link
Contributor

cartermp commented Mar 2, 2020

Is the new mdoc release live?

@joelmartinez
Copy link
Contributor

@cartermp yes it's live.

I don't know if it's relevant/related, but there's still this PR out there that I'd like to complete at some point:
mono/api-doc-tools#332 (comment)

@cartermp
Copy link
Contributor

cartermp commented Mar 2, 2020

In that case this is not fixed - the name of the parameter is missing and the type is incorrect.

@joelmartinez
Copy link
Contributor

@cartermp do you know if this particular issue was fixed in that PR?

@cartermp
Copy link
Contributor

cartermp commented Mar 5, 2020

Sorry for the delay here - no, I don;'t think that PR fixes the issue reported here

@BillWagner BillWagner modified the milestones: March 2020, June 2020 Jun 1, 2020
@gewarren
Copy link
Contributor

gewarren commented Aug 3, 2020

@mimisasouvanh Did/can you create a customer suggestion to track this?

@carlossanlop
Copy link
Member

@joelmartinez @mimisasouvanh - Do you have any updates for this PR?

@mimisasouvanh
Copy link

We have an internal bug to track this. Thanks @carlossanlop for bringing this back up so it doesn't slip through the cracks! cc @joelmartinez

Base automatically changed from master to main March 5, 2021 20:52
@gewarren gewarren requested a review from a team as a code owner March 5, 2021 20:52
@jeffhandley jeffhandley modified the milestones: June 2020, Backlog Apr 29, 2022
@BillWagner
Copy link
Member

Adding @KathleenDollard

The internal work item is closed, but I believe it was closed without action. Can you check if this is fixed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-System.Net.Sockets blocked Indicates issues or PRs that are blocked for some reason waiting-on-feedback Indicates PRs that are waiting for feedback from SMEs before they can be merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants