Class MockResponseEntry<T>
Inheritance
System.Object
MockResponseEntry<T>
Namespace: PnP.Framework.Utilities.UnitTests.Model
Assembly: PnP.Framework.dll
Syntax
public class MockResponseEntry<T> : object
Type Parameters
T
|
Fields
SerializerSettings
Declaration
public static JsonSerializerSettings SerializerSettings
Field Value
Json
|
Properties
Method
Method name called by CSOM (GetEffectivePermissionMask, EnsureUser ect)
Declaration
public string Method { get; set; }
Property Value
System.
|
NameValueParameters
Dictionary of parameters which should be compared with called api function parameters
Declaration
public Dictionary<string, string> NameValueParameters { get; set; }
Property Value
Dictionary<System.
|
ParentParameterValues
Optional. If there is parent method call this is the list of values to compare. For example when You call Web.Lists.GetByTitle("List Title").GetItems() the ParentParameterValues for GetItems will be {"List Title"}
Declaration
public List<string> ParentParameterValues { get; set; }
Property Value
List<System.
|
PropertyName
Name of requested property (Web, Site)
Declaration
public string PropertyName { get; set; }
Property Value
System.
|
ReturnValue
Declaration
public T ReturnValue { get; set; }
Property Value
T
|
SerializedReturnValue
Serialized return value
Declaration
public string SerializedReturnValue { get; }
Property Value
System.
|
Url
Absolute url of web service called
Declaration
public string Url { get; set; }
Property Value
System.
|