Show / Hide Table of Contents

Class ResultInfo

The type ResultInfo.

Inheritance
System.Object
ResultInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(DerivedTypeConverter))]
public class ResultInfo

Properties

View Source

AdditionalData

Gets or sets additional data.

Declaration
[JsonExtensionData(ReadData = true)]
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
View Source

Code

Gets or sets code.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "code", Required = Required.Default)]
public string Code { get; set; }
Property Value
Type Description
System.String
View Source

Message

Gets or sets message.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "message", Required = Required.Default)]
public string Message { get; set; }
Property Value
Type Description
System.String
View Source

SubCode

Gets or sets subCode.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "subCode", Required = Required.Default)]
public string SubCode { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Generated by DocFX