Skip to content

Commit 9402ebf

Browse files
authored
s/Propery/Property (#26713)
1 parent 6be66f5 commit 9402ebf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Servers/HttpSys/src/RequestProcessing/RequestContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ internal unsafe void Delegate(DelegationRule destination)
343343
{
344344
var property = new HttpApiTypes.HTTP_DELEGATE_REQUEST_PROPERTY_INFO()
345345
{
346-
ProperyId = HttpApiTypes.HTTP_DELEGATE_REQUEST_PROPERTY_ID.DelegateRequestDelegateUrlProperty,
346+
PropertyId = HttpApiTypes.HTTP_DELEGATE_REQUEST_PROPERTY_ID.DelegateRequestDelegateUrlProperty,
347347
PropertyInfo = (IntPtr)uriPointer,
348348
PropertyInfoLength = (uint)System.Text.Encoding.Unicode.GetByteCount(destination.UrlPrefix)
349349
};

src/Shared/HttpSys/NativeInterop/HttpApiTypes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ internal enum HTTP_FEATURE_ID
8989
[StructLayout(LayoutKind.Sequential, Pack = 4)]
9090
internal struct HTTP_DELEGATE_REQUEST_PROPERTY_INFO
9191
{
92-
internal HTTP_DELEGATE_REQUEST_PROPERTY_ID ProperyId;
92+
internal HTTP_DELEGATE_REQUEST_PROPERTY_ID PropertyId;
9393
internal uint PropertyInfoLength;
9494
internal IntPtr PropertyInfo;
9595
}

0 commit comments

Comments
 (0)