Skip to content

Commit d1d8b23

Browse files
authored
Update SqlVector<T>.Null refs (#3521)
Updates refs for SqlVector<T>.Null to reflect it returns Nullable<SqlVector<T>>.
1 parent 1e1c52a commit d1d8b23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Microsoft.Data.SqlClient/netcore/ref/Microsoft.Data.SqlClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public SqlVector(System.ReadOnlyMemory<T> memory) { }
131131
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/IsNull/*' />
132132
public bool IsNull => throw null;
133133
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Null/*' />
134-
public static SqlVector<T> Null => throw null;
134+
public static SqlVector<T>? Null => throw null;
135135
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Length/*' />
136136
public int Length { get { throw null; } }
137137
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Memory/*' />

src/Microsoft.Data.SqlClient/netfx/ref/Microsoft.Data.SqlClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2425,7 +2425,7 @@ public SqlVector(System.ReadOnlyMemory<T> memory) { }
24252425
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/IsNull/*' />
24262426
public bool IsNull => throw null;
24272427
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Null/*' />
2428-
public static SqlVector<T> Null => throw null;
2428+
public static SqlVector<T>? Null => throw null;
24292429
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Length/*' />
24302430
public int Length { get { throw null; } }
24312431
/// <include file='../../../../doc/snippets/Microsoft.Data.SqlTypes/SqlVector.xml' path='docs/members[@name="SqlVector"]/Memory/*' />

0 commit comments

Comments
 (0)