Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / SrgsCompiler / CfgArc.cs / 1 / CfgArc.cs
//---------------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // // // Description: // SAPI respresentation for an Arc in a CFG file // // History: // 5/1/2004 [....] Created from the Sapi Managed code //--------------------------------------------------------------------------- using System; using System.Globalization; using System.Speech.Internal.SrgsParser; namespace System.Speech.Internal.SrgsCompiler { ////// Summary description for CfgArc. /// internal struct CfgArc { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors internal CfgArc (CfgArc arc) { _flag1 = arc._flag1; _flag2 = arc._flag2; } #endregion //******************************************************************** // // Internal Properties // //******************************************************************* #region Internal Properties internal bool RuleRef { get { return ((_flag1 & 0x1) != 0); } set { if (value) { _flag1 |= 0x1; } else { _flag1 &= ~0x1U; } } } internal bool LastArc { get { return ((_flag1 & 0x2) != 0); } set { if (value) { _flag1 |= 0x2; } else { _flag1 &= ~0x2U; } } } internal bool HasSemanticTag { get { return ((_flag1 & 0x4) != 0); } set { if (value) { _flag1 |= 0x4; } else { _flag1 &= ~0x4U; } } } internal bool LowConfRequired { get { return ((_flag1 & 0x8) != 0); } set { if (value) { _flag1 |= 0x8; } else { _flag1 &= ~0x8U; } } } internal bool HighConfRequired { get { return ((_flag1 & 0x10) != 0); } set { if (value) { _flag1 |= 0x10; } else { _flag1 &= ~0x10U; } } } internal uint TransitionIndex { get { return (_flag1 >> 5) & 0x3FFFFF; } set { if (value > 0x3FFFFFU) { XmlParser.ThrowSrgsException (SRID.TooManyArcs); } _flag1 &= ~(0x3FFFFFU << 5); _flag1 |= value << 5; } } internal uint MatchMode { set { _flag1 &= ~(0x38000000U); _flag1 |= value << 27; } #if CFGDUMP || VSCOMPILE get { return (_flag1 >> 27) & 0x7; } #endif } // internal uint Weight // { // get // { // return _flag2 & 0xFF; // } // set // { // if (value > 0xFF) // { // throw new OverflowException (SR.Get (SRID.TooManyArcs)); // } // // _flag2 &= ~(uint) 0xFF; // _flag2 |= value; // } // } // internal uint NextStartArcIndex { get { return (_flag2 >> 8) & 0x3FFFFF; } set { if (value > 0x3FFFFF) { XmlParser.ThrowSrgsException (SRID.TooManyArcs); } _flag2 &= ~(0x3FFFFFU << 8); _flag2 |= value << 8; } } #if false internal string DumpFlags { get { return string.Format (CultureInfo.InvariantCulture, "flag1: {0:x} flag2: {1:x}", _flag1, _flag2); } } #endif #endregion //******************************************************************** // // Private Fields // //******************************************************************** #region private Fields private uint _flag1; private uint _flag2; #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlUtil.cs
- datacache.cs
- CustomPopupPlacement.cs
- UnmanagedMarshal.cs
- CultureTableRecord.cs
- GlyphElement.cs
- ProxyWebPartManager.cs
- FontSource.cs
- JsonFormatWriterGenerator.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- BindingExpressionBase.cs
- SafeIUnknown.cs
- CodeConditionStatement.cs
- TiffBitmapDecoder.cs
- WebPartConnectionCollection.cs
- XmlResolver.cs
- diagnosticsswitches.cs
- WebPartVerbCollection.cs
- PropertyStore.cs
- WizardSideBarListControlItem.cs
- WebPartChrome.cs
- ViewStateException.cs
- OleCmdHelper.cs
- ConstraintCollection.cs
- SoapReflectionImporter.cs
- RijndaelManagedTransform.cs
- Int16.cs
- TypeDependencyAttribute.cs
- NodeFunctions.cs
- _NegotiateClient.cs
- RulePatternOps.cs
- RedirectionProxy.cs
- DataServiceExpressionVisitor.cs
- ApplicationSecurityManager.cs
- AutomationProperties.cs
- SimpleTypeResolver.cs
- WindowsEditBox.cs
- CfgParser.cs
- CfgRule.cs
- EventLogHandle.cs
- PrivilegedConfigurationManager.cs
- CalendarDateRangeChangingEventArgs.cs
- BrushConverter.cs
- ExpressionsCollectionConverter.cs
- _IPv4Address.cs
- Substitution.cs
- DispatcherObject.cs
- XmlSortKeyAccumulator.cs
- FixUpCollection.cs
- QueueProcessor.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ColorAnimationUsingKeyFrames.cs
- UpdateTracker.cs
- Scene3D.cs
- WeakReference.cs
- BitmapEditor.cs
- ToolboxItemFilterAttribute.cs
- SqlRetyper.cs
- SecurityUtils.cs
- WindowsAuthenticationModule.cs
- FacetValueContainer.cs
- WhitespaceSignificantCollectionAttribute.cs
- HtmlShimManager.cs
- ObjectDataSourceEventArgs.cs
- CellParagraph.cs
- WebBrowserSiteBase.cs
- TriState.cs
- NameTable.cs
- TypeElementCollection.cs
- ConstraintCollection.cs
- ELinqQueryState.cs
- HtmlForm.cs
- WebZone.cs
- XmlNodeComparer.cs
- BeginStoryboard.cs
- UntypedNullExpression.cs
- TreeIterator.cs
- PreviewPrintController.cs
- SimpleLine.cs
- DefaultIfEmptyQueryOperator.cs
- BitmapCodecInfo.cs
- CodeExpressionCollection.cs
- Point3DValueSerializer.cs
- SpanIndex.cs
- StopRoutingHandler.cs
- StylusPointCollection.cs
- ViewSimplifier.cs
- CookieProtection.cs
- ISAPIWorkerRequest.cs
- MessageFormatterConverter.cs
- ExpressionBuilder.cs
- BuildProvidersCompiler.cs
- ClientConvert.cs
- WorkflowTimerService.cs
- HGlobalSafeHandle.cs
- QueryOutputWriterV1.cs
- ListViewCancelEventArgs.cs
- ProxyWebPart.cs
- ParsedAttributeCollection.cs
- RequestTimeoutManager.cs