BamlBinaryWriter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Markup / BamlBinaryWriter.cs / 1305600 / BamlBinaryWriter.cs

                            /****************************************************************************\ 
*
* File: BamlBinaryWriter.cs
*
* Purpose:  Subclass BinaryWriter. 
*
* Copyright (C) 2006 by Microsoft Corporation.  All rights reserved. 
* 
\***************************************************************************/
 
using System;
using System.IO;
using System.Text;
 
#if PBTCOMPILER
namespace MS.Internal.Markup 
#else 
namespace System.Windows.Markup
#endif 
{

    internal class BamlBinaryWriter: BinaryWriter
    { 
        public BamlBinaryWriter(Stream stream, Encoding code)
            :base(stream, code) 
        { 
        }
 
        public new void Write7BitEncodedInt(int value)
        {
            base.Write7BitEncodedInt(value);
        } 

        public static int SizeOf7bitEncodedSize(int size) 
        { 
            const int _7bits = 0x7F;
            const int _14bits = ( _7bits << 7) | _7bits; 
            const int _21bits = (_14bits << 7) | _7bits;
            const int _28bits = (_21bits << 7) | _7bits;

            if (0 == (size & ~_7bits)) 
                return 1;
            if (0 == (size & ~_14bits)) 
                return 2; 
            if (0 == (size & ~_21bits))
                return 3; 
            if (0 == (size & ~_28bits))
                return 4;
            return 5;
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
/****************************************************************************\ 
*
* File: BamlBinaryWriter.cs
*
* Purpose:  Subclass BinaryWriter. 
*
* Copyright (C) 2006 by Microsoft Corporation.  All rights reserved. 
* 
\***************************************************************************/
 
using System;
using System.IO;
using System.Text;
 
#if PBTCOMPILER
namespace MS.Internal.Markup 
#else 
namespace System.Windows.Markup
#endif 
{

    internal class BamlBinaryWriter: BinaryWriter
    { 
        public BamlBinaryWriter(Stream stream, Encoding code)
            :base(stream, code) 
        { 
        }
 
        public new void Write7BitEncodedInt(int value)
        {
            base.Write7BitEncodedInt(value);
        } 

        public static int SizeOf7bitEncodedSize(int size) 
        { 
            const int _7bits = 0x7F;
            const int _14bits = ( _7bits << 7) | _7bits; 
            const int _21bits = (_14bits << 7) | _7bits;
            const int _28bits = (_21bits << 7) | _7bits;

            if (0 == (size & ~_7bits)) 
                return 1;
            if (0 == (size & ~_14bits)) 
                return 2; 
            if (0 == (size & ~_21bits))
                return 3; 
            if (0 == (size & ~_28bits))
                return 4;
            return 5;
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK