Skip to content

Commit

Permalink
Dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
cschuchardt88 committed Jan 11, 2024
1 parent aa4f182 commit 2edeeaf
Show file tree
Hide file tree
Showing 16 changed files with 176 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/WebSocketServer/WalletSession.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WalletSession.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Wallets;
using System;

Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WalletSessionManager.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WalletSessionManager.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;
using System.Collections.Concurrent;
using System.Linq;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketClient.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketClient.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using System;
using System.Net.WebSockets;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketConnection.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketConnection.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using System;
using System.Collections;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketErrorResult.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketErrorResult.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using System;

Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketExtensions.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using Neo.SmartContract;
using Neo.VM;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketMethodAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketMethodAttribute.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using System;

namespace Neo.Plugins
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketRequestMessage.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketRequestMessage.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using System;

Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketResponseMessage.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketResponseMessage.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;
using System;
using System.Text;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketResponseMessageEvent.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketResponseMessageEvent.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

namespace Neo.Plugins
{
public enum WebSocketResponseMessageEvent : byte
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketServerPlugin.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketServerPlugin.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketServerSettings.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketServerSettings.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Microsoft.Extensions.Configuration;
using System;
using System.Net;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketUtility.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketUtility.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Wallets;
using System.Numerics;

Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/WebSocketUtilityLogResult.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WebSocketUtilityLogResult.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Neo.Json;

namespace Neo.Plugins
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/v1/BlockchainMethods.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// BlockchainMethods.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.IO;
using Neo.Json;
Expand Down
11 changes: 11 additions & 0 deletions src/WebSocketServer/v1/WalletMethods.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
// Copyright (C) 2015-2024 The Neo Project.
//
// WalletMethods.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.

using Akka.Actor;
using Neo.Cryptography.ECC;
using Neo.Json;
Expand Down

0 comments on commit 2edeeaf

Please sign in to comment.