0e57de17c3
* mapster * , * . * ... * . * . * . * . * . * . * int * . * ;
14 lines
476 B
C#
14 lines
476 B
C#
using System;
|
|
using System.Linq.Expressions;
|
|
using Microsoft.SharePoint.Client;
|
|
|
|
namespace ProxyInterfaceConsumerForPnP.Interfaces
|
|
{
|
|
[ProxyInterfaceGenerator.Proxy(typeof(ClientContext))]
|
|
public partial interface IClientContext : IClientRuntimeContext
|
|
{
|
|
void Load<TSource, TTarget>(IClientObject clientObject, params Expression<Func<TSource, object>>[] retrievals)
|
|
where TSource : IClientObject
|
|
where TTarget : ClientObject;
|
|
}
|
|
} |