ServiceStack.StreamExt.Write C# (CSharp) 메소드

Write() 공개 정적인 메소드

public static Write ( this stream, string text ) : void
stream this
text string
리턴 void
        public static void Write(this Stream stream, string text)
        {
            var bytes = Encoding.UTF8.GetBytes(text);
            stream.Write(bytes, 0, bytes.Length);
        }