-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
[bug] [2284] Doc & API mismatch request.AddCookie #2333
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
base: dev
Are you sure you want to change the base?
[bug] [2284] Doc & API mismatch request.AddCookie #2333
Conversation
PR Compliance Guide 🔍Below is a summary of compliance checks for this PR:
Compliance status legend🟢 - Fully Compliant🟡 - Partial Compliant 🔴 - Not Compliant ⚪ - Requires Further Human Verification 🏷️ - Compliance label |
|||||||||||||||||||||||||||
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||
@dotnet-policy-service agree |
|
It's small fix bug because it's my first open source project contributation. |
User description
Description
Solve little documentation missing here from this issue: #2284
Purpose
This pull request is a:
Checklist
PR Type
Documentation
Description
Update
AddCookiemethod documentation with correct 4-parameter signatureReplace incomplete 2-parameter example with accurate parameter names
Align documentation across all versioned docs and main docs
Diagram Walkthrough
File Walkthrough
request.md
Update AddCookie example with correct parametersdocs/docs/usage/request.md
AddCookiemethod example from 2-parameter to 4-parametersignature
request.AddCookie("foo", "bar")torequest.AddCookie("name", "value", "path", "domain")request.md
Update AddCookie example with correct parametersdocs/versioned_docs/version-v111/usage/request.md
AddCookiemethod example from 2-parameter to 4-parametersignature
request.AddCookie("foo", "bar")torequest.AddCookie("name", "value", "path", "domain")request.md
Update AddCookie example with correct parametersdocs/versioned_docs/version-v112/usage/request.md
AddCookiemethod example from 2-parameter to 4-parametersignature
request.AddCookie("foo", "bar")torequest.AddCookie("name", "value", "path", "domain")request.md
Fix frontmatter and update AddCookie parametersdocs/versioned_docs/version-v113/usage/request.md
----to---AddCookiemethod example from 2-parameter to 4-parametersignature
request.AddCookie("foo", "bar")torequest.AddCookie("name", "value", "path", "domain")