当前位置: 首页>>代码示例>>C#>>正文


C# SearchCondition.ThrowIfNull方法代码示例

本文整理汇总了C#中SearchCondition.ThrowIfNull方法的典型用法代码示例。如果您正苦于以下问题:C# SearchCondition.ThrowIfNull方法的具体用法?C# SearchCondition.ThrowIfNull怎么用?C# SearchCondition.ThrowIfNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SearchCondition的用法示例。


在下文中一共展示了SearchCondition.ThrowIfNull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Search

        public IEnumerable<uint> Search(SearchCondition criteria, string mailbox = null)
        {
            AssertValid();
            criteria.ThrowIfNull("criteria");
            lock (sequenceLock)
            {
                if (criteria != null)
                {
                PauseIdling();
                SelectMailbox(mailbox);
                criteria.ThrowIfNull("criteria");
                string resptag = GetTag(), str = criteria.ToString();
                StringReader reader = new StringReader(str);
                bool useUTF8 = str.Contains("\r\n");
                string line = reader.ReadLine();
                string response = SendCommandGetResponse(resptag + "UID SEARCH " + (useUTF8 ? "CHARSET UTF-8 " : string.Empty) + line);
                while ((line = reader.ReadLine()) != null)
                {
                    if (!response.StartsWith("+"))
                    {
                        ResumeIdling();
                        throw new NotSupportedException("Please restrict your search " + "to ASCII-only characters.", new BadServerResponseException(response));
                    }

                    response = SendCommandGetResponse(line);
                }

                List<uint> result = new List<uint>();
                while (response.StartsWith("*"))
                {
                    Match m = Regex.Match(response, @"^\* SEARCH (.+)");
                    if (m.Success)
                    {
                        string[] v = m.Groups[1].Value.Trim().Split(' ');
                        foreach (string s in v)
                        {
                            try
                            {
                                result.Add(Convert.ToUInt32(s));
                            }
                            catch (FormatException)
                            {
                            }
                        }
                    }

                    response = GetResponse();
                }

                ResumeIdling();
                if (!IsResponseOK(response, resptag))
                {
                    throw new BadServerResponseException(response);
                }

                return result.ToArray();
            }
                else
                {
                    throw new ArgumentNullException("criteria");
                }
            }
        }
开发者ID:BoyarinO,项目名称:EmailClient,代码行数:63,代码来源:ImapClient.cs


注:本文中的SearchCondition.ThrowIfNull方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。