Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
655 changes: 440 additions & 215 deletions dotnet/src/Generated/Rpc.cs

Large diffs are not rendered by default.

306 changes: 4 additions & 302 deletions dotnet/src/Generated/SessionEvents.cs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dotnet/src/SessionFsProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,11 @@ private static SessionFsError ToSessionFsError(Exception ex)
: SessionFsErrorCode.UNKNOWN;
return new SessionFsError { Code = code, Message = ex.Message };
}

// SQLite support is not yet implemented for the .NET SDK.
// This satisfies the generated interface; full implementation will follow.
Task<SessionFsSqliteResult> ISessionFsHandler.SqliteAsync(SessionFsSqliteRequest request, CancellationToken cancellationToken)
{
throw new NotImplementedException("SQLite is not yet supported by the .NET SDK.");
}
}
Loading