Exemplo n.º 1
0
 private Response(long token, ResponseType responseType, JArray data, List<ResponseNote> responseNotes, Profile profile, Backtrace backtrace, ErrorType errorType)
 {
     this.Token = token;
     this.Type = responseType;
     this.Data = data;
     this.Notes = responseNotes;
     this.Profile = profile;
     this.Backtrace = backtrace;
     this.ErrorType = errorType;
 }
Exemplo n.º 2
0
		public virtual ErrorBuilder SetBacktrace(Backtrace backtrace)
		{
			this.Backtrace = backtrace;
			return this;
		}
Exemplo n.º 3
0
 internal virtual Builder SetBacktrace(JArray backtrace)
 {
     this.backtrace = Backtrace.FromJsonArray(backtrace);
     return this;
 }