rename OCS to Ocs

This commit is contained in:
2023-10-02 15:40:26 +02:00
parent fc50ebb3d5
commit 459660c35a
26 changed files with 29 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,5 +1,5 @@
using Pilz.Networking.CloudProviders.Nextcloud.Client.Apps.FileRetention.Ocs; using Pilz.Networking.CloudProviders.Nextcloud.Client.Apps.FileRetention.Ocs;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,5 +1,5 @@
using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud.Ocs; using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud.Ocs;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
namespace Pilz.Networking.CloudProviders.Nextcloud.Client.Core namespace Pilz.Networking.CloudProviders.Nextcloud.Client.Core
{ {

View File

@@ -1,5 +1,5 @@
using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs; using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -1,4 +1,4 @@
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View File

@@ -9,7 +9,7 @@ using Pilz.Networking.CloudProviders.Nextcloud.Client;
using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud; using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud;
using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud.Model; using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud.Model;
using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs; using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs;
using Pilz.Networking.CloudProviders.Nextcloud.OCS; using Pilz.Networking.CloudProviders.Nextcloud.Ocs;
namespace Pilz.Networking.CloudProviders.Nextcloud namespace Pilz.Networking.CloudProviders.Nextcloud
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public delegate void GetOcsApiAuthCredentailsEventHandler(object sender, GetOcsApiAuthCredentailsEventArgs eventArgs); public delegate void GetOcsApiAuthCredentailsEventHandler(object sender, GetOcsApiAuthCredentailsEventArgs eventArgs);

View File

@@ -8,13 +8,13 @@ using Newtonsoft.Json;
using System.Diagnostics; using System.Diagnostics;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses;
using System.Xml.Linq; using System.Xml.Linq;
using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud; using Pilz.Networking.CloudProviders.Nextcloud.Client.Cloud;
using Pilz.Networking.CloudProviders.Nextcloud.Client.Core; using Pilz.Networking.CloudProviders.Nextcloud.Client.Core;
using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2; using Pilz.Networking.CloudProviders.Nextcloud.Client.LoginFlowV2;
using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public class OcsApi : IDisposable public class OcsApi : IDisposable
{ {

View File

@@ -5,11 +5,11 @@ using System.Reflection.Emit;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public struct OcsApiAuthCredentials public struct OcsApiAuthCredentials
{ {
public string LoginName { get; set; } public string LoginName { get; set; }
public string AppPassword { get; set; } public string AppPassword { get; set; }
public OcsApiAuthCredentials(string loginName, string appPassword) public OcsApiAuthCredentials(string loginName, string appPassword)

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public abstract class OcsApiBase public abstract class OcsApiBase
{ {

View File

@@ -1,5 +1,5 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
@@ -7,7 +7,7 @@ using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Xml.Linq; using System.Xml.Linq;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public class OcsApiResponse<TOcsResponse> where TOcsResponse : IOcsResponse public class OcsApiResponse<TOcsResponse> where TOcsResponse : IOcsResponse
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public readonly struct OcsApiUrlPath public readonly struct OcsApiUrlPath
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs
{ {
public class OcsData public class OcsData
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public interface IOcsResponse public interface IOcsResponse
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public interface IOcsResponseData public interface IOcsResponseData
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public interface IOcsResponseMeta public interface IOcsResponseMeta
{ {

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public class OcsResponse<TMeta, TData> : IOcsResponse where TMeta : IOcsResponseMeta where TData : IOcsResponseData public class OcsResponse<TMeta, TData> : IOcsResponse where TMeta : IOcsResponseMeta where TData : IOcsResponseData
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public class OcsResponseData : IOcsResponseData public class OcsResponseData : IOcsResponseData
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public class OcsResponseDataArray<TEntry> : List<TEntry>, IOcsResponseData where TEntry : OcsResponseDataEntry public class OcsResponseDataArray<TEntry> : List<TEntry>, IOcsResponseData where TEntry : OcsResponseDataEntry
{ {

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public class OcsResponseDataEntry public class OcsResponseDataEntry
{ {

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{ {
public class OcsResponseMeta : IOcsResponseMeta public class OcsResponseMeta : IOcsResponseMeta
{ {