当前位置: 首页>>代码示例>>C#>>正文


C# Profile.GetBytes方法代码示例

本文整理汇总了C#中Profile.GetBytes方法的典型用法代码示例。如果您正苦于以下问题:C# Profile.GetBytes方法的具体用法?C# Profile.GetBytes怎么用?C# Profile.GetBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Profile的用法示例。


在下文中一共展示了Profile.GetBytes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetUserProfile

 public void SetUserProfile(uint userId, Profile profile)
 {
     if (profile == null)
     {
         throw new NullReferenceException();
     }
     byte[] bytes = profile.GetBytes();
     EmoEngine.errorHandler(EdkDll.EE_SetUserProfile(userId, bytes, (uint)bytes.Length));
 }
开发者ID:AnotherAltr,项目名称:EmotivSDK,代码行数:9,代码来源:EmoEngine.cs

示例2: engine_userAdded_event

    void engine_userAdded_event(object sender, EmoEngineEventArgs e)
    {
        Debug.Log("User Added Event has occured");

        /*
        // enable data aquisition for this user
        engine.DataAcquisitionEnable(userID, true);

        // ask for up to 1 second of buffered data
        engine.EE_DataSetBufferSizeInSec(1.0f);
        */
        // I don't need to do profile handling myself.
        EmoEngine.Instance.LoadUserProfile(userID, debugProfileDir);
        profile = EmoEngine.Instance.GetUserProfile(userID);
        profile.GetBytes();
    }
开发者ID:bkha1,项目名称:CerebralAcademy,代码行数:16,代码来源:EmotivHandler.cs

示例3: SetUserProfile

	/// <summary>
	/// Loads an EmoEngine profile for the specified user.
	/// </summary>
	/// <param name="userId">user ID</param>
	/// <param name="profile">user profile previously returned from EmoEngine.</param>
	public void SetUserProfile(UInt32 userId, Profile profile)
	{
		if (profile == null)
		{
			throw new NullReferenceException();
		}
		byte[] profileBytes = profile.GetBytes();
		errorHandler(EdkDll.EE_SetUserProfile(userId, profileBytes, (UInt32)profileBytes.Length));
	}
开发者ID:florescu,项目名称:CogniDriver,代码行数:14,代码来源:EmoEngine.cs


注:本文中的Profile.GetBytes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。