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


C# RubyIO.SetStream方法代码示例

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


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

示例1: Reopen

        private static RubyIO/*!*/ Reopen(ConversionStorage<MutableString>/*!*/ toPath, RubyIO/*!*/ io, object pathObj, IOInfo info) {
            MutableString path = Protocols.CastToPath(toPath, pathObj);
            Stream newStream = RubyFile.OpenFileStream(io.Context, path.ToString(path.Encoding.Encoding), info.Mode);
            io.Context.SetStream(io.GetFileDescriptor(), newStream);
            io.SetStream(newStream);
            io.Mode = info.Mode;

            if (info.HasEncoding) {
                io.ExternalEncoding = info.ExternalEncoding;
                io.InternalEncoding = info.InternalEncoding;
            }

            return io;
        }
开发者ID:ghouston,项目名称:ironlanguages,代码行数:14,代码来源:IoOps.cs

示例2: InitializeCopy

        public static RubyIO/*!*/ InitializeCopy(RubyIO/*!*/ self, [NotNull]RubyIO/*!*/ source) {
            Stream stream = source.GetStream();
            int descriptor = self.Context.DuplicateFileDescriptor(source.GetFileDescriptor());

            self.SetStream(stream);
            self.SetFileDescriptor(descriptor);
            self.Mode = source.Mode;
            self.ExternalEncoding = source.ExternalEncoding;
            self.InternalEncoding = source.InternalEncoding;
            return self;
        }
开发者ID:ghouston,项目名称:ironlanguages,代码行数:11,代码来源:IoOps.cs

示例3: Reinitialize

        internal static RubyIO/*!*/ Reinitialize(RubyIO/*!*/ io, int descriptor, IOInfo info) {
            io.Mode = info.Mode;
            io.SetStream(GetDescriptorStream(io.Context, descriptor));
            io.SetFileDescriptor(descriptor);

            if (info.HasEncoding) {
                io.ExternalEncoding = info.ExternalEncoding;
                io.InternalEncoding = info.InternalEncoding;
            }

            return io;
        }
开发者ID:ghouston,项目名称:ironlanguages,代码行数:12,代码来源:IoOps.cs

示例4: Reinitialize

 public static RubyIO/*!*/ Reinitialize(RubyIO/*!*/ self, [DefaultProtocol]int descriptor, int mode) {
     self.Mode = (IOMode)mode;
     self.SetStream(GetDescriptorStream(self.Context, descriptor));
     self.SetFileDescriptor(descriptor);
     return self;
 }
开发者ID:kevinkeeney,项目名称:ironruby,代码行数:6,代码来源:IoOps.cs

示例5: Reopen

 public static RubyIO/*!*/ Reopen(RubyIO/*!*/ self, [DefaultProtocol, NotNull]MutableString/*!*/ path, int mode) {
     Stream newStream = RubyFile.OpenFileStream(self.Context, path.ConvertToString(), (IOMode)mode);
     self.Context.SetStream(self.GetFileDescriptor(), newStream);
     self.SetStream(newStream);
     self.Mode = (IOMode)mode;
     return self;
 }
开发者ID:kevinkeeney,项目名称:ironruby,代码行数:7,代码来源:IoOps.cs


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