NBoomackClient
Show / Hide Table of Contents

Class HttpAction

Inheritance
object
Dictionary<string, object>
JsonMap
BoomackAction
HttpAction
Implements
IDictionary<string, object>
ICollection<KeyValuePair<string, object>>
IReadOnlyDictionary<string, object>
IReadOnlyCollection<KeyValuePair<string, object>>
IEnumerable<KeyValuePair<string, object>>
IDictionary
ICollection
IEnumerable
IDeserializationCallback
ISerializable
IEquatable<JsonMap>
IEquatable<BoomackAction>
IEquatable<HttpAction>
Inherited Members
BoomackAction.Type
BoomackAction.Equals(BoomackAction)
BoomackAction.Equals(object)
BoomackAction.GetHashCode()
JsonMap.DynamicWrapper
JsonMap.GetTyped<T>(string, T)
JsonMap.GetTypedArray<T>(string)
JsonMap.SetOrRemove(string, object)
JsonMap.Equals(JsonMap)
Dictionary<string, object>.Add(string, object)
Dictionary<string, object>.Clear()
Dictionary<string, object>.ContainsKey(string)
Dictionary<string, object>.ContainsValue(object)
Dictionary<string, object>.GetEnumerator()
Dictionary<string, object>.GetObjectData(SerializationInfo, StreamingContext)
Dictionary<string, object>.OnDeserialization(object)
Dictionary<string, object>.Remove(string)
Dictionary<string, object>.TryGetValue(string, out object)
Dictionary<string, object>.Comparer
Dictionary<string, object>.Count
Dictionary<string, object>.this[string]
Dictionary<string, object>.Keys
Dictionary<string, object>.Values
object.Equals(object, object)
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Boomack.Client.Model.Actions
Assembly: NBoomackClient.dll
Syntax
public class HttpAction : BoomackAction, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IReadOnlyDictionary<string, object>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, IEquatable<JsonMap>, IEquatable<BoomackAction>, IEquatable<HttpAction>

Constructors

HttpAction()

Declaration
public HttpAction()

HttpAction(string)

Declaration
public HttpAction(string url)
Parameters
Type Name Description
string url

Properties

Accept

Declaration
public string Accept { get; set; }
Property Value
Type Description
string

AllowHeadersFromPayload

Declaration
public bool AllowHeadersFromPayload { get; set; }
Property Value
Type Description
bool

AllowSeachParamsFromPayload

Declaration
public bool AllowSeachParamsFromPayload { get; set; }
Property Value
Type Description
bool

BinaryBody

Declaration
public byte[] BinaryBody { get; set; }
Property Value
Type Description
byte[]

ContentType

Declaration
public string ContentType { get; set; }
Property Value
Type Description
string

DiscardResponseBody

Declaration
public bool DiscardResponseBody { get; set; }
Property Value
Type Description
bool

Headers

Declaration
public IDictionary<string, string> Headers { get; set; }
Property Value
Type Description
IDictionary<string, string>

Method

Declaration
public string Method { get; set; }
Property Value
Type Description
string

PrefixUrl

Declaration
public string PrefixUrl { get; set; }
Property Value
Type Description
string

SearchParams

Declaration
public IDictionary<string, string> SearchParams { get; set; }
Property Value
Type Description
IDictionary<string, string>

TextBody

Declaration
public string TextBody { get; set; }
Property Value
Type Description
string

Timeout

Declaration
public uint? Timeout { get; set; }
Property Value
Type Description
uint?

Url

Declaration
public string Url { get; set; }
Property Value
Type Description
string

Methods

Equals(HttpAction)

Declaration
public bool Equals(HttpAction other)
Parameters
Type Name Description
HttpAction other
Returns
Type Description
bool

SetJsonBody<T>(T, JsonSerializerSettings)

Declaration
public void SetJsonBody<T>(T body, JsonSerializerSettings jsonSettings = null)
Parameters
Type Name Description
T body
JsonSerializerSettings jsonSettings
Type Parameters
Name Description
T

Implements

System.Collections.Generic.IDictionary<TKey, TValue>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IDictionary
System.Collections.ICollection
System.Collections.IEnumerable
System.Runtime.Serialization.IDeserializationCallback
System.Runtime.Serialization.ISerializable
System.IEquatable<T>
System.IEquatable<T>
System.IEquatable<T>

Extension Methods

CollectionEquality.EqualsDeep<TKey, TValue>(IDictionary<TKey, TValue>, IDictionary<TKey, TValue>)
CollectionEquality.GetDeepHashCode<TKey, TValue>(IDictionary<TKey, TValue>)
In This Article
Back to top
Boomack Homepage