PTUtility.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / PrintConfig / PTUtility.cs / 1 / PTUtility.cs

                            /*++ 

Copyright (C) 2002 Microsoft Corporation
All rights reserved.
 
Module Name:
 
    PTUtility.cs 

Abstract: 

    Definition and implementation of the internal PTUtility class, which
    contains static utility functions used internally only.
 
Author:
 
    [....] ([....]) 11/22/2002 

--*/ 

using System;
using System.Collections.Specialized;
using System.Resources; 

namespace MS.Internal.Printing.Configuration 
{ 
    /// 
    /// PTUtility class that supports static utility functions 
    /// 
    internal static class PTUtility
    {
        ///  
        /// Checks whether or not the HRESULT code indicates a success
        ///  
        /// the HRESULT code to check 
        /// true if the HRESULT indicates a success, false otherwise
        public static bool IsSuccessCode(uint hResult) 
        {
            return (hResult < 0x80000000);
        }
 
        /// 
        /// Gets localized text from assembly embedded resource. 
        ///  
        public static string GetTextFromResource(string key)
        { 
            return _resManager.GetString(key, System.Threading.Thread.CurrentThread.CurrentUICulture);
        }

        private static ResourceManager _resManager = 
            new ResourceManager("System.Printing", typeof(PTUtility).Assembly);
    } 
} 

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