當前位置: 首頁>>代碼示例>>C#>>正文


C# SerializationInfo.?.GetInt32方法代碼示例

本文整理匯總了C#中System.Runtime.Serialization.SerializationInfo.?.GetInt32方法的典型用法代碼示例。如果您正苦於以下問題:C# SerializationInfo.?.GetInt32方法的具體用法?C# SerializationInfo.?.GetInt32怎麽用?C# SerializationInfo.?.GetInt32使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Runtime.Serialization.SerializationInfo的用法示例。


在下文中一共展示了SerializationInfo.?.GetInt32方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: MailChimpException

        /// <summary>
        /// Initializes a new instance of the <see cref="MailChimpException"/> class.
        /// </summary>
        /// <param name="info">
        /// The info.
        /// </param>
        /// <param name="context">
        /// The context.
        /// </param>
        /// <exception cref="ArgumentNullException"><paramref>
        ///         <name>name</name>
        ///     </paramref>
        ///     is null. </exception>
        /// <exception cref="InvalidCastException">The value associated with <paramref>
        ///         <name>name</name>
        ///     </paramref>
        ///     cannot be converted to a <see cref="T:System.String" />. </exception>
        /// <exception cref="SerializationException">An element with the specified name is not found in the current instance. </exception>
        // ReSharper disable once UnusedParameter.Local
        public MailChimpException(SerializationInfo info, StreamingContext context)
        {
            var errorText = string.Empty;

            try
            {
                this.Detail = info?.GetString("detail");
                this.Title = info?.GetString("title");
                this.Type = info?.GetString("type");
                this.Status = info?.GetInt32("status") ?? 0;
                this.Instance = info?.GetString("instance");

                errorText =
                    $"Title: {this.Title + Environment.NewLine} Type: {this.Type + Environment.NewLine} Status: {this.Status + Environment.NewLine} + Detail: {this.Detail + Environment.NewLine}";
                this.Errors = (List<Error>) info?.GetValue("errors", typeof(List<Error>));
                errorText += "Errors: " + string.Join(" : ", this.Errors.Select(x => x.Field + " " + x.Message));
            }
            catch
            {
            }
            finally
            {
                Trace.Write(errorText);
                Console.Error.WriteAsync(errorText);
            }
		}
開發者ID:REDECODE,項目名稱:MailChimp.Net,代碼行數:45,代碼來源:MailChimpException.cs

示例2: MailChimpException

 public MailChimpException(SerializationInfo info, StreamingContext context)
 {
     Detail = info?.GetString("detail");
     Title = info?.GetString("title");
     Type = info?.GetString("type");
     Status = info?.GetInt32("status") ?? 0;
     Instance = info?.GetString("instance");
 }
開發者ID:wow0815,項目名稱:MailChimp.Net,代碼行數:8,代碼來源:MailChimpException.cs


注:本文中的System.Runtime.Serialization.SerializationInfo.?.GetInt32方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。