• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# IWriter类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中IWriter的典型用法代码示例。如果您正苦于以下问题:C# IWriter类的具体用法?C# IWriter怎么用?C# IWriter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IWriter类属于命名空间,在下文中一共展示了IWriter类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: IncrementAndAppendChars

    private int IncrementAndAppendChars(
IWriter output,
char b1,
char b2,
char b3) {
      var count = 0;
      if (!this.unlimitedLineLength) {
        if (this.lineCount + 3 > 75) {
          // 76 including the final '='
          output.WriteByte(0x3d);
          output.WriteByte(0x0d);
          output.WriteByte(0x0a);
          this.lineCount = 0;
          count += 3;
        }
      }
      if (this.lineCount==0 && b1=='.') {
        output.WriteByte((byte)'=');
        output.WriteByte((byte)'2');
        output.WriteByte((byte)'E');
        this.lineCount += 2;
        count += 2;
      } else {
        output.WriteByte((byte)b1);
      }
      output.WriteByte((byte)b2);
      output.WriteByte((byte)b3);
      this.lineCount += 3;
      count += 3;
      return count;
    }
开发者ID:houzhenggang,项目名称:MailLib,代码行数:31,代码来源:QuotedPrintableEncoder.cs


示例2: SetUp

        public void SetUp()
        {
            _reader = MockRepository.GenerateStub<IReader<Artist>>();
            _writer = MockRepository.GenerateStub<IWriter<Artist>>();

            _operationOutput = new ExceptionOperationOutput();
        }
开发者ID:gregsochanik,项目名称:RESTfulService,代码行数:7,代码来源:ArtistHandlerPutTests.cs


示例3: IncrementAndAppend

 private int IncrementAndAppend(IWriter output, string appendStr) {
   var count = 0;
   if (!this.unlimitedLineLength) {
     if (this.lineCount + appendStr.Length > 75) {
       // 76 including the final '='
       output.WriteByte(0x3d);
       output.WriteByte(0x0d);
       output.WriteByte(0x0a);
       this.lineCount = 0;
       count += 3;
     }
   }
   for (int i = 0; i < appendStr.Length; ++i) {
     if (i==0 && this.lineCount == 0 && appendStr[i] == '.') {
       output.WriteByte((byte)'=');
       output.WriteByte((byte)'2');
       output.WriteByte((byte)'E');
       this.lineCount += 2;
       count += 2;
     } else {
       output.WriteByte((byte)appendStr[i]);
     }
     ++count;
   }
   this.lineCount += appendStr.Length;
   return count;
 }
开发者ID:houzhenggang,项目名称:MailLib,代码行数:27,代码来源:QuotedPrintableEncoder.cs


示例4: WriteElement

        public static void WriteElement(IScope scope, IWriter writer, object obj)
        {
            var type = obj.GetType();

            var xmlWriter = writer as XmlWriterImpl;
            if (xmlWriter != null)
            {
                var surrogate = scope.GetSurrogate(type);
                if (surrogate != null)
                {
                    surrogate.Write(xmlWriter.XmlWriter, obj);
                    return;
                }
            }

            var def = scope.GetElementDef(type);
            if (def != null)
            {
                var subScope = def as IScope ?? scope;
                WriteElement(subScope, writer, obj, def, def.Name);
                return;
            }

            throw new NotSupportedException();
        }
开发者ID:sergeyt,项目名称:xserializer,代码行数:25,代码来源:Serializer.cs


示例5: EventEngine

 public EventEngine(IReader reader, IWriter writer, IEventHolder eventHolder, IEventLogger eventLogger)
 {
     this.reader = reader;
     this.writer = writer;
     this.eventHolder = eventHolder;
     this.eventLogger = eventLogger;
 }
开发者ID:AlexanderDimitrov,项目名称:HighQualityCode,代码行数:7,代码来源:EventEngine.cs


示例6: AzureService

 protected AzureService(string subscriptionId, X509Certificate certificate, IWriter writer)
 {
     this.subscriptionId = subscriptionId;
     this.certificate = certificate;
     Writer = writer;
     ServiceUri = new ServiceUri(subscriptionId);
 }
开发者ID:georgeslegros,项目名称:AzureManagementApiClient,代码行数:7,代码来源:AzureService.cs


示例7: ParseCommand

        public static void ParseCommand(string input, IWriter output, BlobDatabase database)
        {
            var tokens = input.Split(' ').ToArray();
            var commandType = tokens[0];
            switch (commandType)
            {
                case "create":
                    CreateCommand(database, tokens);
                    break;
                case "attack":
                    AttackCommand(database, tokens);
                    break;
                case "pass":

                    break;
                case "status":
                    StatusCommand(output, database);
                    break;
                case "report-events":
                    //todo: report events
                    break;
                default:
                    throw new InvalidOperationException("Invalid Command.");
            }

            foreach (var blob in database)
            {
                if (blob.BlobBehavior.HasBeenTriggered)
                {
                    blob.BlobBehavior.EndTurnAction(blob);
                }
            }
        }
开发者ID:HouseBreaker,项目名称:SoftUni-Exams,代码行数:33,代码来源:CommandParser.cs


示例8: RenderChildren

 protected override void RenderChildren(IWriter writer)
 {
     foreach(Section section in this.Sections)
     {
         section.Render(writer);
     }
 }
开发者ID:chrcar01,项目名称:HyperActive,代码行数:7,代码来源:ConfigBuilder.cs


示例9: CSVReaderWriter

        public CSVReaderWriter(IWriter writerStream)
        {
            ReaderStream = null;
            writerStream.ThrowIfNull("writerStream");

            WriterStream = writerStream;
        }
开发者ID:dminik,项目名称:AddressProcessor,代码行数:7,代码来源:CSVReaderWriter.cs


示例10: Encode

 public int Encode(int b, IWriter output) {
   if (b < 0) {
     return this.finalized ? (-1) : this.FinalizeEncoding(output);
   }
   b &= 0xff;
   var count = 0;
   if (this.lenientLineBreaks) {
     if (b == 0x0d) {
       // CR
       this.haveCR = true;
       count += this.AddByteInternal(output, (byte)0x0d);
       count += this.AddByteInternal(output, (byte)0x0a);
       return count;
     }
     if (b == 0x0a && !this.haveCR) {
       // bare LF
       if (this.haveCR) {
         // Do nothing, this is an LF that follows CR
         this.haveCR = false;
       } else {
         count += this.AddByteInternal(output, (byte)0x0d);
         count += this.AddByteInternal(output, (byte)0x0a);
         this.haveCR = false;
       }
       return count;
     }
   }
   count += this.AddByteInternal(output, (byte)b);
   this.haveCR = false;
   return count;
 }
开发者ID:houzhenggang,项目名称:MailLib,代码行数:31,代码来源:Base64Encoder.cs


示例11: WriteLocaleChanges

        private static void WriteLocaleChanges(Patch patch, IWriter writer)
        {
            if (patch.LanguageChanges.Count == 0)
                return;

            long startPos = writer.Position;
            writer.WriteInt32(AssemblyPatchBlockID.Locl);
            writer.WriteUInt32(0); // Size filled in later
            writer.WriteByte(0); // Version 0

            // Write change data for each language
            writer.WriteByte((byte)patch.LanguageChanges.Count);
            foreach (LanguageChange language in patch.LanguageChanges)
            {
                writer.WriteByte(language.LanguageIndex);

                // Write the change data for each string in the language
                writer.WriteInt32(language.LocaleChanges.Count);
                foreach (LocaleChange change in language.LocaleChanges)
                {
                    writer.WriteUInt16((ushort)change.Index);
                    writer.WriteUTF8(change.NewValue);
                }
            }

            // Fill in the block size
            long endPos = writer.Position;
            writer.SeekTo(startPos + 4);
            writer.WriteUInt32((uint)(endPos - startPos));
            writer.SeekTo(endPos);
        }
开发者ID:YxCREATURExY,项目名称:Assembly,代码行数:31,代码来源:AssemblyPatchWriter.cs


示例12: Core

 public Core(ILogicController controller, IReader reader, IWriter writer, IGameInstance game)
 {
     this.controller = controller;
     this.reader = reader;
     this.writer = writer;
     this.game = game;
 }
开发者ID:TemplarRei,项目名称:Battle-Field-3,代码行数:7,代码来源:Core.cs


示例13: Nav

 public Nav(IWriter writer, string activeIdentifier, NavSettings settings = null)
     : base(writer)
 {
     _activeIdentifier = activeIdentifier;
     _settings = settings ?? new NavSettings();
     WriteOpening();
 }
开发者ID:FerozAhmed,项目名称:bootstrapcomponents,代码行数:7,代码来源:Nav.cs


示例14: AddChips

 public AddChips(IWriter writer)
 {
     this.InitializeComponent();
     this.ControlBox = false;
     this.outOfChipsLabel.BorderStyle = BorderStyle.FixedSingle;
     this.writer = writer;
 }
开发者ID:Team-Bilberry,项目名称:Poker,代码行数:7,代码来源:AddChips.cs


示例15: WritePatch

		public static void WritePatch(Patch patch, IWriter writer)
		{
			var container = new ContainerWriter(writer);
			container.StartBlock("asmp", 0);
			WriteBlocks(patch, container, writer);
			container.EndBlock();
		}
开发者ID:t3hm00kz,项目名称:Assembly,代码行数:7,代码来源:AssemblyPatchWriter.cs


示例16: Fill

        /// <summary>
        /// Fills a section of a stream with a repeating byte.
        /// </summary>
        /// <param name="writer">The IWriter to fill a section of.</param>
        /// <param name="b">The byte to fill the section with.</param>
        /// <param name="size">The size of the section to fill.</param>
        public static void Fill(IWriter writer, byte b, int size)
        {
            if (size == 0)
                return;
            if (size < 0)
                throw new ArgumentException("The size of the data to insert must be >= 0");
            if (writer.Position == writer.Length)
                return;

            const int BufferSize = 0x1000;
            byte[] buffer = new byte[BufferSize];
            long length = writer.Length;
            long pos = writer.Position;
            int filled = 0;

            // Fill the buffer
            for (int i = 0; i < buffer.Length; i++)
                buffer[i] = b;

            // Write it
            while (filled < size)
            {
                writer.WriteBlock(buffer, 0, (int)Math.Min(length - pos, BufferSize));
                filled += BufferSize;
                pos += BufferSize;
            }
        }
开发者ID:YxCREATURExY,项目名称:Assembly,代码行数:33,代码来源:StreamUtil.cs


示例17: WriteBlockHeader

 private static long WriteBlockHeader(IWriter writer, int magic)
 {
     var startPos = writer.Position;
     writer.WriteInt32(magic);
     writer.WriteUInt32(0); // Size filled in later
     return startPos;
 }
开发者ID:iBotPeaches,项目名称:Assembly,代码行数:7,代码来源:AssemblyPatchWriter.cs


示例18: WriteResourcePages

        private static void WriteResourcePages(TagContainer tags, ContainerWriter container, IWriter writer)
        {
            foreach (ResourcePage page in tags.ResourcePages)
            {
                container.StartBlock("rspg", 1);

                writer.WriteInt32(page.Index);
                writer.WriteUInt16(page.Salt);
                writer.WriteByte(page.Flags);
                writer.WriteAscii(page.FilePath ?? "");
                writer.WriteInt32(page.Offset);
                writer.WriteInt32(page.UncompressedSize);
                writer.WriteByte((byte) page.CompressionMethod);
                writer.WriteInt32(page.CompressedSize);
                writer.WriteUInt32(page.Checksum);
                WriteByteArray(page.Hash1, writer);
                WriteByteArray(page.Hash2, writer);
                WriteByteArray(page.Hash3, writer);
                writer.WriteInt32(page.Unknown1);
                writer.WriteInt32(page.Unknown2);
                writer.WriteInt32(page.Unknown3);

                container.EndBlock();
            }
        }
开发者ID:Cloms,项目名称:Assembly,代码行数:25,代码来源:TagContainerWriter.cs


示例19: EndBlock

 private static void EndBlock(IWriter writer, long headerPos)
 {
     var endPos = writer.Position;
     writer.SeekTo(headerPos + 4);
     writer.WriteUInt32((uint)(endPos - headerPos));
     writer.SeekTo(endPos);
 }
开发者ID:iBotPeaches,项目名称:Assembly,代码行数:7,代码来源:AssemblyPatchWriter.cs


示例20: StructureWriter

        private long _offset; // The offset that the writer is currently at

        #endregion Fields

        #region Constructors

        private StructureWriter(StructureValueCollection values, IWriter writer)
        {
            _writer = writer;
            _baseOffset = writer.Position;
            _offset = _baseOffset;
            _collection = values;
        }
开发者ID:t3hm00kz,项目名称:Assembly,代码行数:13,代码来源:StructureWriter.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IWritingSystem类代码示例发布时间:2022-05-24
下一篇:
C# IWriteOnlyTransaction类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap