Skip to content

Commit

Permalink
Spelling (#840)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-field authored and AlinMoldovean committed Nov 5, 2019
1 parent f015ece commit d7130a9
Show file tree
Hide file tree
Showing 45 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion ComIOP/Common/Common/ComUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ public static object CreateInstance1(Guid clsid, string hostName, UserIdentity i
return results[0].pItf;
}

// COM impersonation is a nice feature but variations between behavoirs on different
// COM impersonation is a nice feature but variations between behaviors on different
// windows platforms make it virtually impossible to support. This code is left here
// in case it becomes a critical requirement in the future.
#if COM_IMPERSONATION_SUPPORT
Expand Down
8 changes: 4 additions & 4 deletions ComIOP/Common/Common/PropertyIds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class PropertyIds
/// <remarks/>
public const int ConsistencyWindow = 605;
/// <remarks/>
public const int WriteBehavoir = 606;
public const int WriteBehavior = 606;
/// <remarks/>
public const int UnconvertedItemId = 607;
/// <remarks/>
Expand Down Expand Up @@ -214,7 +214,7 @@ public static NodeId GetDataTypeId(int propertyId)
case PropertyIds.Dictionary: { return DataTypes.String; }
case PropertyIds.TypeDescription: { return DataTypes.String; }
case PropertyIds.ConsistencyWindow: { return DataTypes.String; }
case PropertyIds.WriteBehavoir: { return DataTypes.String; }
case PropertyIds.WriteBehavior: { return DataTypes.String; }
case PropertyIds.UnconvertedItemId: { return DataTypes.String; }
case PropertyIds.UnfilteredItemId: { return DataTypes.String; }
case PropertyIds.DataFilterValue: { return DataTypes.String; }
Expand Down Expand Up @@ -272,7 +272,7 @@ public static VarEnum GetVarType(int propertyId)
case PropertyIds.Dictionary: { return VarEnum.VT_BSTR; }
case PropertyIds.TypeDescription: { return VarEnum.VT_BSTR; }
case PropertyIds.ConsistencyWindow: { return VarEnum.VT_BSTR; }
case PropertyIds.WriteBehavoir: { return VarEnum.VT_BSTR; }
case PropertyIds.WriteBehavior: { return VarEnum.VT_BSTR; }
case PropertyIds.UnconvertedItemId: { return VarEnum.VT_BSTR; }
case PropertyIds.UnfilteredItemId: { return VarEnum.VT_BSTR; }
case PropertyIds.DataFilterValue: { return VarEnum.VT_BSTR; }
Expand Down Expand Up @@ -373,7 +373,7 @@ public static string GetDescription(int propertyId)
case PropertyIds.Dictionary: { return "Dictionary"; }
case PropertyIds.TypeDescription: { return "Type Description"; }
case PropertyIds.ConsistencyWindow: { return "Consistency Window"; }
case PropertyIds.WriteBehavoir: { return "Write Behavior"; }
case PropertyIds.WriteBehavior: { return "Write Behavior"; }
case PropertyIds.UnconvertedItemId: { return "Unconverted Item Id"; }
case PropertyIds.UnfilteredItemId: { return "Unfiltered Item Id"; }
case PropertyIds.DataFilterValue: { return "Data Filter Value"; }
Expand Down
2 changes: 1 addition & 1 deletion ComIOP/Common/Rcw/DataAccess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1282,7 +1282,7 @@ public static class Constants
public const string OPC_CONSISTENCY_WINDOW_UNKNOWN = "Unknown";
public const string OPC_CONSISTENCY_WINDOW_NOT_CONSISTENT = "Not Consistent";

// complex data write behavoir values.
// complex data write behavior values.
public const string OPC_WRITE_BEHAVIOR_BEST_EFFORT = "Best Effort";
public const string OPC_WRITE_BEHAVIOR_ALL_OR_NOTHING = "All or Nothing";
}
Expand Down
2 changes: 1 addition & 1 deletion ComIOP/Wrapper/Include/opcda.idl
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ library OPCDA
const LPCWSTR OPC_CONSISTENCY_WINDOW_UNKNOWN = L"Unknown";
const LPCWSTR OPC_CONSISTENCY_WINDOW_NOT_CONSISTENT = L"Not Consistent";

// complex data write behavoir values.
// complex data write behavior values.
const LPCWSTR OPC_WRITE_BEHAVIOR_BEST_EFFORT = L"Best Effort";
const LPCWSTR OPC_WRITE_BEHAVIOR_ALL_OR_NOTHING = L"All or Nothing";
}
Expand Down
2 changes: 1 addition & 1 deletion ComIOP/Wrapper/ServerWrapper/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace Opc.Ua.Server
/// This node manager is a base class used in multiple samples. It implements the INodeManager
/// interface and allows sub-classes to override only the methods that they need. This example
/// is not part of the SDK because most real implementations of a INodeManager will need to
/// modify the behavoir of the base class.
/// modify the behavior of the base class.
/// </remarks>
public class CustomNodeManager2 : INodeManager2, INodeIdFactory, IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Samples/Client.Net4/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Samples/GDS/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ protected override ServiceResult CreateMonitoredItem(

MemoryTagState tag = source as MemoryTagState;

// use default behavoir for non-tag sources.
// use default behavior for non-tag sources.
if (tag == null)
{
return base.CreateMonitoredItem(
Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Samples/Server.Net4/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/Aggregation/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/Boiler/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace Quickstarts
/// This node manager is a base class used in multiple samples. It implements the INodeManager
/// interface and allows sub-classes to override only the methods that they need. This example
/// is not part of the SDK because most real implementations of a INodeManager will need to
/// modify the behavoir of the base class.
/// modify the behavior of the base class.
/// </remarks>
public class QuickstartNodeManager : INodeManager, INodeIdFactory, IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/DataAccess/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/DataTypes/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/Empty/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/Methods/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/PerfTest/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/Reference/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
2 changes: 1 addition & 1 deletion SampleApplications/Workshop/SimpleEvents/Server/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<system.serviceModel>
<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->
<services>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<!--
UA servers built with the SDK use the Opc.Ua.SessionEndpoint class to implement the ISessionEndpoint
contract. It is possible to add additional behavoirs in the configuration file by referencing this
contract. It is possible to add additional behaviors in the configuration file by referencing this
service. For example, the configuration in this file turns on metadata publishing.
-->

Expand Down
Loading

0 comments on commit d7130a9

Please sign in to comment.