TimeEnumHelper.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Animation / TimeEnumHelper.cs / 1305600 / TimeEnumHelper.cs

                            //------------------------------------------------------------------------------ 
//  Microsoft Windows Client Platform
//  Copyright (c) Microsoft Corporation, 2004
//
//  File:       TimeEnumHelper.cs 
//-----------------------------------------------------------------------------
 
using System; 
using System.Windows.Media.Animation;
 
namespace MS.Internal
{
    /// 
    /// A class for validating enumerated types. 
    /// 
    internal static partial class TimeEnumHelper 
    { 
        // IMPORTANT: These values must be kept current with enum definitions for validation to work
 
        // Enums declared in Enums.cs
        private const int _maxTimeSeekOrigin = (int)TimeSeekOrigin.Duration;

        // Enums declared in PathAnimationSource.cs 
        private const byte _maxPathAnimationSource = (int)PathAnimationSource.Angle;
 
        ///  
        /// Determines if the enumerated value is defined (valid) for the given enumerated type
        ///  
        /// 
        /// The variable whose validity is verified.
        /// 
        ///  
        /// True if valid, false otherwise.
        ///  
        static internal bool IsValidTimeSeekOrigin(TimeSeekOrigin value) 
        {
            return (0 <= value && (int)value <= _maxTimeSeekOrigin); 
        }

        /// 
        /// Determines if the enumerated value is defined (valid) for the given enumerated type 
        /// 
        ///  
        /// The variable whose validity is verified. 
        /// 
        ///  
        /// True if valid, false otherwise.
        /// 
        static internal bool IsValidPathAnimationSource(PathAnimationSource value)
        { 
            return (0 <= value && (byte)value <= _maxPathAnimationSource);
        } 
    } 
}

// 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