Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / SrgsCompiler / CfgRule.cs / 1 / CfgRule.cs
//---------------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // Description: // SAPI Cfg respresentation for a Rule // // History: // 5/1/2004 jeanfp Created from the Sapi Managed code //--------------------------------------------------------------------------- using System; using System.Speech.Internal.SrgsParser; namespace System.Speech.Internal.SrgsCompiler { ////// Summary description for CfgRule. /// internal struct CfgRule { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors internal CfgRule (int id, int nameOffset, uint flag) { _flag = flag; _nameOffset = nameOffset; _id = id; } internal CfgRule (int id, int nameOffset, SPCFGRULEATTRIBUTES attributes) { _flag = 0; _nameOffset = nameOffset; _id = id; TopLevel = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_TopLevel) != 0); DefaultActive = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Active) != 0); PropRule = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Interpreter) != 0); Export = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Export) != 0); Dynamic = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Dynamic) != 0); Import = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Import) != 0); } #endregion //******************************************************************** // // Internal Properties // //******************************************************************* #region Internal Properties internal bool TopLevel { get { return ((_flag & 0x0001) != 0); } set { if (value) { _flag |= 0x0001; } else { _flag &= ~(uint) 0x0001; } } } internal bool DefaultActive { // get // { // return ((_flag & 0x0002) != 0); // } set { if (value) { _flag |= 0x0002; } else { _flag &= ~(uint) 0x0002; } } } internal bool PropRule { // get // { // return ((_flag & 0x0004) != 0); // } set { if (value) { _flag |= 0x0004; } else { _flag &= ~(uint) 0x0004; } } } internal bool Import { get { return ((_flag & 0x0008) != 0); } set { if (value) { _flag |= 0x0008; } else { _flag &= ~(uint) 0x0008; } } } internal bool Export { get { return ((_flag & 0x0010) != 0); } set { if (value) { _flag |= 0x0010; } else { _flag &= ~(uint) 0x0010; } } } internal bool HasResources { get { return ((_flag & 0x0020) != 0); } // set // { // if (value) // { // _flag |= 0x0020; // } // else // { // _flag &= ~(uint) 0x0020; // } // } } internal bool Dynamic { get { return ((_flag & 0x0040) != 0); } set { if (value) { _flag |= 0x0040; } else { _flag &= ~(uint) 0x0040; } } } internal bool HasDynamicRef { get { return ((_flag & 0x0080) != 0); } set { if (value) { _flag |= 0x0080; } else { _flag &= ~(uint) 0x0080; } } } internal uint FirstArcIndex { get { return (_flag >> 8) & 0x3FFFFF; } set { if (value > 0x3FFFFF) { XmlParser.ThrowSrgsException (SRID.TooManyArcs); } _flag &= ~((uint) 0x3FFFFF << 8); _flag |= value << 8; } } // internal bool Reserved // { // get // { // return ((_flag & 0x40000000) != 0); // } // set // { // if (value) // { // _flag |= 0x40000000; // } // else // { // _flag &= ~(uint) 0x40000000; // } // } // } internal bool DirtyRule { // get // { // return ((_flag & 0x80000000) != 0); // } set { if (value) { _flag |= 0x80000000; } else { _flag &= ~0x80000000; } } } #endregion //******************************************************************** // // Internal Fields // //******************************************************************** #region Internal Fields // should be private but the order is absolutly key for marshalling internal uint _flag; internal int _nameOffset; internal int _id; #endregion } //******************************************************************* // // Internal Enumeration // //******************************************************************** #region Internal Enumeration [Flags] internal enum SPCFGRULEATTRIBUTES { SPRAF_TopLevel = (1 << 0), SPRAF_Active = (1 << 1), SPRAF_Export = (1 << 2), SPRAF_Import = (1 << 3), SPRAF_Interpreter = (1 << 4), SPRAF_Dynamic = (1 << 5), SPRAF_Root = (1 << 6), SPRAF_AutoPause = (1 << 16), SPRAF_UserDelimited = (1 << 17) } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // Description: // SAPI Cfg respresentation for a Rule // // History: // 5/1/2004 jeanfp Created from the Sapi Managed code //--------------------------------------------------------------------------- using System; using System.Speech.Internal.SrgsParser; namespace System.Speech.Internal.SrgsCompiler { ////// Summary description for CfgRule. /// internal struct CfgRule { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors internal CfgRule (int id, int nameOffset, uint flag) { _flag = flag; _nameOffset = nameOffset; _id = id; } internal CfgRule (int id, int nameOffset, SPCFGRULEATTRIBUTES attributes) { _flag = 0; _nameOffset = nameOffset; _id = id; TopLevel = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_TopLevel) != 0); DefaultActive = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Active) != 0); PropRule = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Interpreter) != 0); Export = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Export) != 0); Dynamic = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Dynamic) != 0); Import = ((attributes & SPCFGRULEATTRIBUTES.SPRAF_Import) != 0); } #endregion //******************************************************************** // // Internal Properties // //******************************************************************* #region Internal Properties internal bool TopLevel { get { return ((_flag & 0x0001) != 0); } set { if (value) { _flag |= 0x0001; } else { _flag &= ~(uint) 0x0001; } } } internal bool DefaultActive { // get // { // return ((_flag & 0x0002) != 0); // } set { if (value) { _flag |= 0x0002; } else { _flag &= ~(uint) 0x0002; } } } internal bool PropRule { // get // { // return ((_flag & 0x0004) != 0); // } set { if (value) { _flag |= 0x0004; } else { _flag &= ~(uint) 0x0004; } } } internal bool Import { get { return ((_flag & 0x0008) != 0); } set { if (value) { _flag |= 0x0008; } else { _flag &= ~(uint) 0x0008; } } } internal bool Export { get { return ((_flag & 0x0010) != 0); } set { if (value) { _flag |= 0x0010; } else { _flag &= ~(uint) 0x0010; } } } internal bool HasResources { get { return ((_flag & 0x0020) != 0); } // set // { // if (value) // { // _flag |= 0x0020; // } // else // { // _flag &= ~(uint) 0x0020; // } // } } internal bool Dynamic { get { return ((_flag & 0x0040) != 0); } set { if (value) { _flag |= 0x0040; } else { _flag &= ~(uint) 0x0040; } } } internal bool HasDynamicRef { get { return ((_flag & 0x0080) != 0); } set { if (value) { _flag |= 0x0080; } else { _flag &= ~(uint) 0x0080; } } } internal uint FirstArcIndex { get { return (_flag >> 8) & 0x3FFFFF; } set { if (value > 0x3FFFFF) { XmlParser.ThrowSrgsException (SRID.TooManyArcs); } _flag &= ~((uint) 0x3FFFFF << 8); _flag |= value << 8; } } // internal bool Reserved // { // get // { // return ((_flag & 0x40000000) != 0); // } // set // { // if (value) // { // _flag |= 0x40000000; // } // else // { // _flag &= ~(uint) 0x40000000; // } // } // } internal bool DirtyRule { // get // { // return ((_flag & 0x80000000) != 0); // } set { if (value) { _flag |= 0x80000000; } else { _flag &= ~0x80000000; } } } #endregion //******************************************************************** // // Internal Fields // //******************************************************************** #region Internal Fields // should be private but the order is absolutly key for marshalling internal uint _flag; internal int _nameOffset; internal int _id; #endregion } //******************************************************************* // // Internal Enumeration // //******************************************************************** #region Internal Enumeration [Flags] internal enum SPCFGRULEATTRIBUTES { SPRAF_TopLevel = (1 << 0), SPRAF_Active = (1 << 1), SPRAF_Export = (1 << 2), SPRAF_Import = (1 << 3), SPRAF_Interpreter = (1 << 4), SPRAF_Dynamic = (1 << 5), SPRAF_Root = (1 << 6), SPRAF_AutoPause = (1 << 16), SPRAF_UserDelimited = (1 << 17) } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CustomTypeDescriptor.cs
- Point3DKeyFrameCollection.cs
- EmbeddedMailObjectCollectionEditor.cs
- SystemNetworkInterface.cs
- EmbossBitmapEffect.cs
- BamlRecordWriter.cs
- elementinformation.cs
- SqlParameter.cs
- ObjectSpanRewriter.cs
- PersistenceMetadataNamespace.cs
- FormCollection.cs
- ComponentEditorForm.cs
- DataTemplateKey.cs
- _emptywebproxy.cs
- DockPatternIdentifiers.cs
- ReadingWritingEntityEventArgs.cs
- TextTreeInsertUndoUnit.cs
- RegexParser.cs
- MobileControl.cs
- CompiledAction.cs
- CalendarDateRange.cs
- AuthorizationRule.cs
- X509SecurityTokenProvider.cs
- AssemblySettingAttributes.cs
- SystemMulticastIPAddressInformation.cs
- CompositeScriptReferenceEventArgs.cs
- StaticResourceExtension.cs
- PersistChildrenAttribute.cs
- OdbcHandle.cs
- AdRotatorDesigner.cs
- WebPartDisplayModeCancelEventArgs.cs
- OleDbTransaction.cs
- OrderedHashRepartitionStream.cs
- Classification.cs
- CssStyleCollection.cs
- CodeNamespaceImport.cs
- WasEndpointConfigContainer.cs
- OrthographicCamera.cs
- Menu.cs
- AnimationStorage.cs
- XPathItem.cs
- BufferModeSettings.cs
- _CommandStream.cs
- GeometryCollection.cs
- SQLStringStorage.cs
- LineInfo.cs
- BitmapEffect.cs
- Geometry3D.cs
- FastEncoderWindow.cs
- AppearanceEditorPart.cs
- XmlSchemaAnnotated.cs
- ConfigPathUtility.cs
- SoapAttributeAttribute.cs
- FillErrorEventArgs.cs
- BitmapEffectGroup.cs
- Aggregates.cs
- CanExecuteRoutedEventArgs.cs
- ArrayElementGridEntry.cs
- Rule.cs
- SqlCommandAsyncResult.cs
- RowToFieldTransformer.cs
- DragEvent.cs
- WebPartManager.cs
- FontSource.cs
- AllMembershipCondition.cs
- DispatchWrapper.cs
- GeneralTransform3DTo2D.cs
- StringBuilder.cs
- HwndHost.cs
- OutputCacheProfileCollection.cs
- Image.cs
- MaxMessageSizeStream.cs
- HttpWrapper.cs
- TypeDependencyAttribute.cs
- Asn1IntegerConverter.cs
- HtmlForm.cs
- DataObjectAttribute.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- TypefaceMap.cs
- ExtendedProperty.cs
- SerialErrors.cs
- FileSystemWatcher.cs
- ItemDragEvent.cs
- DummyDataSource.cs
- NonClientArea.cs
- RawStylusInputReport.cs
- FrameworkTemplate.cs
- XmlWhitespace.cs
- Fault.cs
- PassportAuthenticationEventArgs.cs
- EncryptedPackageFilter.cs
- FileDialog.cs
- EntityDataSourceChangedEventArgs.cs
- RevocationPoint.cs
- Color.cs
- SubtreeProcessor.cs
- StaticSiteMapProvider.cs
- UnaryExpression.cs
- EventLogPermissionEntry.cs
- PrivacyNoticeBindingElementImporter.cs