add csharpier

This commit is contained in:
Adam Hathcock
2024-05-21 16:34:46 +01:00
parent 1734d5162a
commit e341772cbc
110 changed files with 1096 additions and 656 deletions
@@ -7,8 +7,11 @@ namespace ProxyInterfaceConsumerForPnP.Interfaces
[ProxyInterfaceGenerator.Proxy(typeof(ClientContext))]
public partial interface IClientContext : IClientRuntimeContext
{
void Load<TSource, TTarget>(IClientObject clientObject, params Expression<Func<TSource, object>>[] retrievals)
void Load<TSource, TTarget>(
IClientObject clientObject,
params Expression<Func<TSource, object>>[] retrievals
)
where TSource : IClientObject
where TTarget : ClientObject;
}
}
}
@@ -1,7 +1,5 @@
namespace ProxyInterfaceConsumerForPnP.Interfaces
{
[ProxyInterfaceGenerator.Proxy(typeof(Microsoft.SharePoint.Client.ClientObject))]
public partial interface IClientObject
{
}
}
public partial interface IClientObject { }
}
@@ -1,8 +1,5 @@
namespace ProxyInterfaceConsumerForPnP.Interfaces
{
[ProxyInterfaceGenerator.Proxy(typeof(Microsoft.SharePoint.Client.ClientRuntimeContext))]
public partial interface IClientRuntimeContext
{
}
}
public partial interface IClientRuntimeContext { }
}
@@ -7,4 +7,4 @@
// public partial interface IProxyListCollection: IClientObject, IEnumerable, IQueryable
// {
// }
//}
//}
@@ -5,4 +5,4 @@ namespace ProxyInterfaceConsumerForPnP.Interfaces
{
// public virtual void X();
}
}
}
@@ -1,7 +1,5 @@
namespace ProxyInterfaceConsumerForPnP.Interfaces
{
[ProxyInterfaceGenerator.Proxy(typeof(Microsoft.SharePoint.Client.User))]
public partial interface IUser
{
}
}
public partial interface IUser { }
}
@@ -1,7 +1,5 @@
namespace ProxyInterfaceConsumerForPnP.Interfaces
{
[ProxyInterfaceGenerator.Proxy(typeof(Microsoft.SharePoint.Client.Web))]
public partial interface IWeb: ISecurableObject
{
}
}
public partial interface IWeb : ISecurableObject { }
}