8 writes to detail
System.ServiceModel (8)
System\ServiceModel\FaultException.cs (8)
386
this.
detail
= detail;
392
this.
detail
= detail;
398
this.
detail
= detail;
404
this.
detail
= detail;
410
this.
detail
= detail;
416
this.
detail
= detail;
422
this.
detail
= detail;
428
this.
detail
= (TDetail)info.GetValue("detail", typeof(TDetail));
5 references to detail
System.ServiceModel (5)
System\ServiceModel\FaultException.cs (5)
433
get { return this.
detail
; }
438
return MessageFault.CreateFault(this.Code, this.Reason, this.
detail
);
449
info.AddValue("detail", this.
detail
);
455
return SR.GetString(SR.SFxFaultExceptionToString3, this.GetType(), this.Message, this.
detail
!= null ? this.
detail
.ToString() : String.Empty);